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-7.C
blob
4281bc8156916ce53806dc56fdf78ba380b82dd5
1
// PR c++/14481
2
// { dg-options "-Wunused" }
3
4
void func()
5
{
6
struct mybitfields {
7
unsigned int s_field:8;
8
};
9
struct mybitfields s;
10
s.s_field = 255;
11
};
12