aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/20020531-1.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 730818f..ffa1a3b 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/gcc.dg/20020531-1.c b/gcc/testsuite/gcc.dg/20020531-1.c
index 397e2a2..c18033f 100644
--- a/gcc/testsuite/gcc.dg/20020531-1.c
+++ b/gcc/testsuite/gcc.dg/20020531-1.c
@@ -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 ();
}