c++: using non-dep array var of unknown bound [PR115358]
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950915-1.c
blob6d65b84013b1be1a07a096f4ba833f573e3ed6e6
1 void abort (void);
2 void exit (int);
4 long int a = 100000;
5 long int b = 21475;
7 long
8 f ()
10 return ((long long) a * (long long) b) >> 16;
13 int
14 main (void)
16 if (f () < 0)
17 abort ();
18 exit (0);