view gcc/testsuite/gcc.c-torture/compile/pr16566-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* ICE with flexible arrays in non-lvalue structures.  Bug 16566
   (comment #5).  */
/* { dg-options "-Wno-psabi" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } } */

struct A
{
    int i;
    int x[];
};

int foo(struct A a)
{ 
    return (a,a).x[0];
}