PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / vrp-4.c
blob23f29220c8a692a488b54a163e9b2f164af24a80
1 extern void exit (int);
2 extern void abort ();
4 void test(int x, int y)
6 int c;
8 if (x == 1) abort();
9 if (y == 1) abort();
11 c = x / y;
13 if (c != 1) abort();
16 int main()
18 test(2, 2);
19 exit (0);