Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20020225-2.c
blob: 5c91596096bb481ade1a54af210d06faee5587b8 [
file
] [
log
] [
blame
]
static
int
test
(
int
x
)
{
union
{
int
i
;
double
d
;
}
a
;
a
.
d
=
0
;
a
.
i
=
1
;
return
x
>>
a
.
i
;
}
int
main
(
void
)
{
if
(
test
(
5
)
!=
2
)
abort
();
exit
(
0
);
}