aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20030321-1.c
blob: 1150c7f7619222a12b2bde605af3ee3a60803dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This used to ICE on s390 due to displacement overflow 
   when accessing the low-order subword.  */

/* { dg-do compile } */
/* { dg-options "" } */

struct array 
{
  char align[4092];
  long long elem[2] __attribute__ ((__packed__)); /* { dg-warning "attribute ignored" "" { target default_packed } } */
};

long long
test (struct array *array, int i)
{
  return array->elem[i];
}