blob: 930829bd488a952032d39591c7986c5cae5ff77d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* PR c/60226 - ICE initializing array of elements with too large alignment */
/* { dg-do compile } */
/* { dg-options "-Wno-c++-compat" { target c } } */
/* { dg-require-effective-target int32plus } */
typedef int __attribute__ ((aligned (1 << 28))) int28;
int28 foo[4] = {}; /* { dg-error "alignment of array elements is greater than element size|maximum object file alignment" } */
typedef int __attribute__ ((aligned (1 << 29))) int29; /* { dg-error "requested alignment|maximum object file alignment" } */
void
f (void)
{
struct { __attribute__((aligned (1 << 28))) double a; } x1;
struct { __attribute__((aligned (1 << 29))) double a; } x2; /* { dg-error "requested alignment" } */
}
|