Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950426-2.c
blobe7d2d1db63e84a13b0889c7f58378642c93cb0cf
1 void abort (void);
2 void exit (int);
4 int
5 main(void)
7 long int i = -2147483647L - 1L; /* 0x80000000 */
8 char ca = 1;
10 if (i >> ca != -1073741824L)
11 abort ();
13 if (i >> i / -2000000000L != -1073741824L)
14 abort ();
16 exit (0);