comparison gcc/testsuite/gcc.dg/20030321-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* This used to ICE on s390 due to displacement overflow
2 when accessing the low-order subword. */
3
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6
7 struct array
8 {
9 char align[4092];
10 long long elem[2] __attribute__ ((__packed__)); /* { dg-warning "attribute ignored" "" { target default_packed } } */
11 };
12
13 long long
14 test (struct array *array, int i)
15 {
16 return array->elem[i];
17 }
18