Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr71762-1.c
blob: d20cbc32c97c919768ca5132467ec066706d2b20 [
file
] [
log
] [
blame
]
/* { dg-do run } */
/* { dg-additional-options "-fdisable-rtl-init-regs" } */
static
_Bool
foo
(
_Bool
a
,
_Bool
b
)
{
int
x
=
a
&&
!
b
;
return
x
!=
0
;
}
int
y
=
1
;
int
main
()
{
_Bool
x
;
if
(
foo
(
x
,
y
))
__builtin_abort
();
return
0
;
}