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
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
Wdangling-else-1.c
blob
28a5a8f53fb6fbc0debedaa2aff5b8ccca3f48f8
1
/* { dg-do compile } */
2
/* { dg-options "-Wdangling-else" } */
3
4
void
bar
(
int
);
5
void
6
foo
(
int
a
,
int
b
)
7
{
8
if
(
a
)
/* { dg-warning "suggest explicit braces to avoid ambiguous" } */
9
if
(
b
)
10
bar
(
1
);
11
else
12
bar
(
2
);
13
}