Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20010404-1.c
blobf890118e15d6838533ad9905b53098802c32a4a1
1 /* This testcase caused a floating point exception in the compiler when
2 compiled with -O2. The crash occurs when trying to simplify division
3 and modulo operations. */
5 #include <limits.h>
7 extern void bar (int);
9 void foo ()
11 int a = INT_MIN;
12 int b = -1;
13 bar (a / b);
14 bar (a % b);