Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20081112-1.c
blob1efe0168577438805a80c0f69f7256072a3aeaa5
1 #include <limits.h>
3 extern void abort (void);
5 static __attribute__((noinline)) void foo (int a)
7 int b = (a - 1) + INT_MIN;
9 if (b != INT_MIN)
10 abort ();
13 int main (void)
15 foo (1);
16 return 0;