aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/pr48226.c
blob: a436f1da5c12e9d912df3029531cd8c637b070a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
/* { dg-require-effective-target powerpc_vsx_ok } */
/* { dg-options "-O3 -mcpu=power7" } */

/* The bug shows up if you compile with -maltivec or -mcpu=power7, due to one
   of the vector's being eliminated due to rs6000_macro_to_expand being called
   recursively.  */

struct vector {
  float v[4];
};

struct vector vector = { 1.0, 2.0, 3.0, 4.0 };