blob: b3043f471fb61f06e224386a397d93c90c66b44f [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O2 --param case-values-threshold=1 -w" }
int f (__INT32_TYPE__ i)
{
switch (i) {
case 2147483647:
return 1;
case 9223372036854775807L:
return 2;
case (2147483647*4)%4:
return 4;
}
return 0;
}