Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / ext / altivec-10.C
blob36cce7e01faa841ac7a05ca867f492176f544806
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-*-eabispe*" "powerpc-ibm-aix*" } { "*" } { "" } } */
5 /* { dg-options "-save-temps -maltivec" } */
7 #include <altivec.h>
9 #define vector_float vector float
10 #define vector_float_foo vector float foo
11 #define vector_float_bar_eq vector float bar =
13 /* NB: Keep the following split across three lines.  */
14 vector
15 int
16 a1 = { 100, 200, 300, 400 };
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 };
22 /* { dg-final { cleanup-saved-temps } } */