2018-08-22 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr86945.c
blob4b722f5f685cfbb1c115888f47565402caeaeda9
1 /* { dg-do run } */
3 void __attribute__((noinline,noipa))
4 foo(int id)
6 switch (id)
8 case (-__INT_MAX__ - 1)...-1:
9 __builtin_abort ();
10 default:;
14 int main()
16 foo(1);
17 return 0;