blob: 4b722f5f685cfbb1c115888f47565402caeaeda9 [file] [log] [blame]
/* { dg-do run } */
void __attribute__((noinline,noipa))
foo(int id)
{
switch (id)
{
case (-__INT_MAX__ - 1)...-1:
__builtin_abort ();
default:;
}
}
int main()
{
foo(1);
return 0;
}