2008-05-08 Kai Tietz <kai.tietz@onevision.com>
* gcc.c-torture/compile/pr36172.c: Replace unsigned long by
__SIZE_TYPE__.
From-SVN: r135076
+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;
if (!a)
return;
}
- return (unsigned long) fcs;
+ return (__SIZE_TYPE__) fcs;
}