From: Kai Tietz Date: Thu, 8 May 2008 08:53:39 +0000 (+0000) Subject: pr36172.c: Replace unsigned long by __SIZE_TYPE__. X-Git-Tag: releases/gcc-4.4.0~5080 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e17a4cf37a367bd76e0b7c016a9d090cfef422d;p=thirdparty%2Fgcc.git pr36172.c: Replace unsigned long by __SIZE_TYPE__. 2008-05-08 Kai Tietz * gcc.c-torture/compile/pr36172.c: Replace unsigned long by __SIZE_TYPE__. From-SVN: r135076 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2b137fa9988e..2647ea49f11e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-05-08 Kai Tietz + + * gcc.c-torture/compile/pr36172.c: Replace unsigned long by + __SIZE_TYPE__. + 2008-05-08 Richard Guenther PR middle-end/36154 diff --git a/gcc/testsuite/gcc.c-torture/compile/pr36172.c b/gcc/testsuite/gcc.c-torture/compile/pr36172.c index 19f0950b16d1..aaee377f5b4a 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr36172.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr36172.c @@ -1,5 +1,5 @@ int f(float * ); -unsigned long FcCharSetFreeze (int *fcs, int b) +__SIZE_TYPE__ FcCharSetFreeze (int *fcs, int b) { int i; int a = 0; @@ -12,6 +12,6 @@ unsigned long FcCharSetFreeze (int *fcs, int b) if (!a) return; } - return (unsigned long) fcs; + return (__SIZE_TYPE__) fcs; }