blob: a256881342fc9790f8220f9d5c3bf7b643ec9666 [file] [log] [blame]
/* PR target/98681 */
__attribute__((noipa)) int
foo (int x)
{
if (x > 32)
return (x << -64) & 255;
else
return x;
}
int
main ()
{
if (foo (32) != 32 || foo (-150) != -150)
__builtin_abort ();
return 0;
}