OSDN Git Service

2007-01-05 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / pr27826.C
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