Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr56484.c
blob: 894862cd461c4ebf669b66b94697ed2e4f3021c3 [
file
] [
log
] [
blame
]
/* PR rtl-optimization/56484 */
unsigned
char
b
[
4096
];
int
bar
(
void
);
int
foo
(
void
)
{
int
a
=
0
;
while
(
bar
())
{
int
c
=
bar
();
a
=
a
<
0
?
a
:
c
;
__builtin_memset
(
b
,
0
,
sizeof
b
);
}
return
a
;
}