blob: 0aa64fb3152ea3a87d462b0f316e283903a6bd31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* PR middle-end/103813 */
/* { dg-require-effective-target size32plus } */
struct A { char b; char c[0x21000000]; };
struct A d;
int
foo ()
{
return d.c[0x20000000] || d.c[1];
}
|