Commit 8e17a4cf by Kai Tietz Committed by Kai Tietz

pr36172.c: Replace unsigned long by __SIZE_TYPE__.

2008-05-08  Kai Tietz  <kai.tietz@onevision.com>

        * gcc.c-torture/compile/pr36172.c: Replace unsigned long by
        __SIZE_TYPE__.

From-SVN: r135076
parent fb4b5171
2008-05-08 Kai Tietz <kai.tietz@onevision.com>
* gcc.c-torture/compile/pr36172.c: Replace unsigned long by
__SIZE_TYPE__.
2008-05-08 Richard Guenther <rguenther@suse.de>
PR middle-end/36154
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;
}
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