Commit 9199347f by Stephane Carrez Committed by Stephane Carrez

20010327-1.c: Use __SIZE_TYPE__ instead of unsigned long.

	* gcc.c-torture/compile/20010327-1.c: Use __SIZE_TYPE__ instead
        of unsigned long.

From-SVN: r46689
parent c1a31f67
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.
......
extern void _text;
static unsigned long x = (unsigned long) &_text - 0x10000000L - 1;
static __SIZE_TYPE__ x = (__SIZE_TYPE__) &_text - 0x10000000L - 1;
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