* gcc.c-torture/compile/pr60655-1.c: Use __SIZE_TYPE__ for size_t.
authorAndreas Schwab <schwab@gcc.gnu.org>
Sun, 6 Apr 2014 17:55:12 +0000 (17:55 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Sun, 6 Apr 2014 17:55:12 +0000 (17:55 +0000)
From-SVN: r209167

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr60655-1.c

index 08f0264..7df316e 100644 (file)
@@ -1,8 +1,14 @@
+2014-04-06  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * gcc.c-torture/compile/pr60655-1.c: Use __SIZE_TYPE__ for size_t.
+
 2014-04-06  John David Anglin  <danglin@gcc.gnu.org>
 
        PR testsuite/60671
        g++.dg/pr49718.C: Adjust scan-assembler-times for hppa*-*-hpux*.
 
+2014-04-06  John David Anglin  <danglin@gcc.gnu.org>
+
        PR testsuite/60672
        * g++.dg/cpp1y/auto-fn25.C: Require lto.
 
index 5f38701..6f84f6e 100644 (file)
@@ -3,7 +3,7 @@
 typedef unsigned char unit;
 typedef unit *unitptr;
 extern short global_precision;
-typedef unsigned int size_t;
+typedef __SIZE_TYPE__ size_t;
 extern void *memcpy (void *dest, const void *src, size_t n);
 
 short mp_compare(const unit* r1, const unit* r2)