2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20030316-1.c
blobbde2e136ad3fdc84e09b79baaa763257e1d2e4d8
1 /* PR target/9164 */
2 /* The comparison operand was sign extended erraneously. */
4 int
5 main (void)
7 long j = 0x40000000;
8 if ((unsigned int) (0x40000000 + j) < 0L)
9 abort ();
11 return 0;