aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wmultistatement-macros-5.c
blob: 0ac84f544809c0147ffd5b367cdf96f240717212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR c/80116 */
/* { dg-options "-Wmultistatement-macros" } */
/* { dg-do compile } */

#define M(N)	\
L ## N:		\
  x++; x++ /* { dg-warning "macro expands to multiple statements" } */

int x, y, tmp;

void
fn1 (void)
{
  if (x) /* { dg-message "not guarded by this 'if' clause" } */
   M (0); /* { dg-message "in expansion of macro .M." } */
  if (x) /* { dg-message "not guarded by this 'if' clause" } */
   M (1); /* { dg-message "in expansion of macro .M." } */
}