Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr105455.c
blob: 81e9154baa1c3970507697913b0109c277d07b41 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O1 -fharden-conditional-branches -funroll-loops --param max-loop-header-insns=1" } */
__attribute__
((
cold
))
void
bar
(
void
);
void
foo
(
int
x
)
{
if
(
x
)
{
int
i
;
for
(
i
=
0
;
i
<
101
;
++
i
)
bar
();
}
}