Create embedded-5_0-branch branch for development on ARM embedded cores.
[official-gcc.git] / embedded-5_0-branch / gcc / testsuite / gcc.c-torture / execute / pr42544.c
blobc5951b06a1766fbb0e5c99758b4ae60472979328
1 /* PR c/42544 */
3 extern void abort (void);
5 int
6 main ()
8 signed short s = -1;
9 if (sizeof (long long) == sizeof (unsigned int))
10 return 0;
11 if ((unsigned int) s >= 0x100000000ULL)
12 abort ();
13 return 0;