Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
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
;
}