PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991221-1.c
blob7106fee606d8f954217ac69c957e653366dd72ba
1 int main( void )
3 unsigned long totalsize = 80;
4 unsigned long msize = 64;
6 if (sizeof(long) != 4)
7 exit(0);
9 if ( totalsize > (2147483647L * 2UL + 1)
10 || (msize != 0 && ((msize - 1) > (2147483647L * 2UL + 1) )))
11 abort();
12 exit( 0 );