Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr47299.c
blob: 4f3d1f9cb12a13a474ffaf88bc7edd0c704f8a83 [
file
] [
log
] [
blame
]
/* PR rtl-optimization/47299 */
extern
void
abort
(
void
);
__attribute__
((
noinline
,
noclone
))
unsigned
short
foo
(
unsigned
char
x
)
{
return
x
*
255
;
}
int
main
()
{
if
(
foo
(
0x40
)
!=
0x3fc0
)
abort
();
return
0
;
}