view gcc/testsuite/gcc.dg/20030321-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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];
}