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");
}
}