Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr51023.c
blob: 34252ea0ae03b3cbdc2025fd74b44dd6898d7c4f [
file
] [
log
] [
blame
]
/* PR rtl-optimization/51023 */
extern
void
abort
(
void
);
short
int
foo
(
long
int
x
)
{
return
x
;
}
int
main
()
{
long
int
a
=
0x4272AL
;
if
(
foo
(
a
)
==
a
)
abort
();
return
0
;
}