* gcc.dg/20020531-1.c: Add LL specifier to avoid warning.

From-SVN: r54669
This commit is contained in:
Richard Henderson 2002-06-16 11:56:12 -07:00 committed by Richard Henderson
parent c134da6b77
commit 0931db7141
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-06-16 Richard Henderson <rth@redhat.com>
* gcc.dg/20020531-1.c: Add LL specifier to avoid warning.
2002-06-15 Hans-Peter Nilsson <hp@axis.com>
* gcc.c-torture/execute/20020615-1.c: New test.

View File

@ -16,6 +16,6 @@ void foo (void)
c = (unsigned long long) __builtin_ia32_paddusb ((__v8qi) a, (__v8qi) b);
__builtin_ia32_emms ();
if (c != 0x1122334455667788)
if (c != 0x1122334455667788LL)
abort ();
}