blob: 5ec9cd9db26a80e9bb6928f8584c85e03df72f01 [file] [log] [blame]
/* PR c/80116 */
/* { dg-options "-Wmultistatement-macros" } */
/* { dg-do compile } */
#define M \
if (x) x++; x++
void
f (int x)
{
M;
M;
M;
M;
M;
M;
M;
M;
M;
M;
M;
}