Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr69403.c
blob: 097d366079df46e5bc41b05d835d5f3b3ea0e1a4 [
file
] [
log
] [
blame
]
/* PR target/69403. */
int
a
,
b
,
c
;
__attribute__
((
__noinline__
))
int
fn1
()
{
if
((
b
|
(
a
!=
(
a
&
c
)))
==
1
)
__builtin_abort
();
return
0
;
}
int
main
(
void
)
{
a
=
5
;
c
=
1
;
b
=
6
;
return
fn1
();
}