repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-6.C
blob
58a3f642bc34dfc7dbcd9d7f1498fb4af8c6c21c
1
/* PR middle-end/14203 */
2
/* { dg-do compile } */
3
/* { dg-options "-Wall" } */
4
5
void foo()
6
{
7
if (false)
8
if (int i=0) // { dg-warning "unused" "" }
9
int j=0; // { dg-warning "unused" "" }
10
}
11