* gcc.c-torture/compile/20010327-1.c: Use __SIZE_TYPE__ instead
authorciceron <ciceron@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 1 Nov 2001 10:17:35 +0000 (10:17 +0000)
committerciceron <ciceron@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 1 Nov 2001 10:17:35 +0000 (10:17 +0000)
        of unsigned long.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46689 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 0d65649..e8c8aed 100644 (file)
@@ -1,3 +1,8 @@
+2001-11-01  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
+       * gcc.c-torture/compile/20010327-1.c: Use __SIZE_TYPE__ instead
+        of unsigned long.
+
 2001-10-30  Jakub Jelinek  <jakub@redhat.com>
 
        * gcc.dg/20011029-2.c: New test.
index fc31a6e..5e6e821 100644 (file)
@@ -1,2 +1,2 @@
 extern void _text;
-static unsigned long x = (unsigned long) &_text - 0x10000000L - 1;
+static __SIZE_TYPE__ x = (__SIZE_TYPE__) &_text - 0x10000000L - 1;