repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix bootstrap failure for bare metal due to autoconf link tests
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
Wmultistatement-macros-4.c
blob
e5cc9c35d5b12d1f67e123c41373e74769439d72
1
/* PR c/80116 */
2
/* { dg-options "-Wmultistatement-macros" } */
3
/* { dg-do compile } */
4
5
#define FN(C) \
6
void \
7
fn (void) \
8
{ \
9
C; \
10
}
11
12
int
i
;
13
14
FN
(
if
(
i
) ++
i
)