Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wduplicated-branches-10.c
blob: 8d918efcdc3a3c04d917c7a17daa44c5cbf0f860 [
file
] [
log
] [
blame
]
/* PR c/64279 */
/* { dg-do compile } */
/* { dg-options "-Wduplicated-branches" } */
#define
DEBUG
(
msg
)
;
void
f
(
int
i
)
{
if
(
i
>
9
)
{
DEBUG
(
"foo"
);
}
else
{
DEBUG
(
"bar"
);
}
}