OSDN Git Service

2011-08-19 Andrew Stubbs <ams@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / powerpc / pr48226.c
1 /* { dg-do compile } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
3 /* { dg-require-effective-target powerpc_vsx_ok } */
4 /* { dg-options "-O3 -mcpu=power7" } */
5
6 /* The bug shows up if you compile with -maltivec or -mcpu=power7, due to one
7    of the vector's being eliminated due to rs6000_macro_to_expand being called
8    recursively.  */
9
10 struct vector {
11   float v[4];
12 };
13
14 struct vector vector = { 1.0, 2.0, 3.0, 4.0 };