Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr98681.c
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
;
}