2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / run-id-pr46758.c
blob81411f5708e21df68e50d5d81ccf6e5683c585ae
1 int
2 movegt (int y, long long a)
4 int i;
5 int ret = 0;
6 for (i = 0; i < y; i++)
7 if (a == -1LL << 33)
8 ret = -1;
9 return ret;
12 int
13 main ()
15 if (movegt (1, -1LL << 33) != -1)
16 __builtin_abort ();
17 return 0;