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
/
opt
/
pr27826.C
blob
5e40f1746f98990233d4e5c680607f61198c1c22
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
struct Geometry
5
{
6
int type:16;
7
};
8
struct Geometry get() {};
9
int f()
10
{
11
struct Geometry test;
12
return get().type == test.type;
13
}
14