OSDN Git Service

Index: gcc/ChangeLog
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / altivec-16.c
1 /* This is a compile-only test for interaction of "-maltivec" and "-save-temps".  */
2 /* Author:  Ziemowit Laski  <zlaski@apple.com>.  */
3 /* { dg-do compile { target powerpc*-*-* } } */
4 /* { dg-xfail-if "" { "powerpc-ibm-aix*" } { "-maltivec" } { "" } } */
5 /* { dg-options "-save-temps -maltivec" } */
6
7 #include <altivec.h>
8
9 #define vector_float vector float
10 #define vector_float_foo vector float foo
11 #define vector_float_bar_eq vector float bar =
12
13 /* NB: Keep the following split across three lines.  */
14 vector
15 int
16 a1 = { 100, 200, 300, 400 };
17
18 vector_float f1 = { 1.0, 2.0, 3.0, 4.0 };  
19 vector_float_foo = { 3.0, 4.0, 5.0, 6.0 };
20 vector_float_bar_eq { 8.0, 7.0, 6.0, 5.0 };