* gcc.dg/20020531-1.c: Add LL specifier to avoid warning.
authorRichard Henderson <rth@redhat.com>
Sun, 16 Jun 2002 18:56:12 +0000 (11:56 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Sun, 16 Jun 2002 18:56:12 +0000 (11:56 -0700)
From-SVN: r54669

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20020531-1.c

index 730818f9f836197aa193df67ab9f14610ce0fd34..ffa1a3b15f4eb7578a899705f90b7176208bcea6 100644 (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.
index 397e2a20f159913bb76d2b5431a46d37624c157f..c18033f3d08579eee83684bef908842cb3c34926 100644 (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 ();
 }