blob: f01bda9ae5c1dbf9f93dd1e723d107ffd0074772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do compile } */
/* { dg-options "-O2" } */
struct S {
short a, b;
};
struct T {
int c;
struct S s;
};
int f ()
{
struct T t;
t.c = t.s.a || t.s.b;
return t.c;
}
|