Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr93582.c
blob: 54f5897383226737010a8a99dc52162e3dbf05ac [
file
] [
log
] [
blame
]
/* PR tree-optimization/93582 */
short
a
;
int
b
,
c
;
__attribute__
((
noipa
))
void
foo
(
void
)
{
b
=
c
;
a
&=
7
;
}
int
main
()
{
c
=
27
;
a
=
14
;
foo
();
if
(
b
!=
27
||
a
!=
6
)
__builtin_abort
();
return
0
;
}