Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
vrp-7.c
blob: b4c9e62d449e006dad37c909640f4f80cbbdc720 [
file
] [
log
] [
blame
]
void
abort
(
void
);
struct
T
{
int
b
:
1
;
}
t
;
void
__attribute__
((
noinline
))
foo
(
int
f
)
{
t
.
b
=
(
f
&
0x10
)
?
1
:
0
;
}
int
main
(
void
)
{
foo
(
0x10
);
if
(!
t
.
b
)
abort
();
return
0
;
}