Commit 738d6b6d by Andreas Schwab

* gcc.c-torture/compile/pr60655-1.c: Use __SIZE_TYPE__ for size_t.

From-SVN: r209167
parent 3c6b3701
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> 2014-04-06 John David Anglin <danglin@gcc.gnu.org>
PR testsuite/60671 PR testsuite/60671
g++.dg/pr49718.C: Adjust scan-assembler-times for hppa*-*-hpux*. g++.dg/pr49718.C: Adjust scan-assembler-times for hppa*-*-hpux*.
2014-04-06 John David Anglin <danglin@gcc.gnu.org>
PR testsuite/60672 PR testsuite/60672
* g++.dg/cpp1y/auto-fn25.C: Require lto. * g++.dg/cpp1y/auto-fn25.C: Require lto.
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
typedef unsigned char unit; typedef unsigned char unit;
typedef unit *unitptr; typedef unit *unitptr;
extern short global_precision; 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); extern void *memcpy (void *dest, const void *src, size_t n);
short mp_compare(const unit* r1, const unit* r2) short mp_compare(const unit* r1, const unit* r2)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment