Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / powerpc / altivec-1.c
blob6fae31fe0c1fd092457869768a996be016808c18
1 /* { dg-do run { target powerpc*-*-* } } */
2 /* { dg-xfail-if "" { "powerpc-*-eabispe*" "powerpc-ibm-aix*" } { "*" } { "" } } */
3 /* { dg-options "-maltivec" } */
5 /* Program to test PowerPC AltiVec instructions. */
7 #include <altivec.h>
8 #include "altivec_check.h"
10 extern void abort (void);
12 vector int a1 = { 100, 200, 300, 400 };
13 vector int a2 = { 500, 600, 700, 800 };
14 vector int addi = { 600, 800, 1000, 1200 };
15 vector int avgi = { 300, 400, 500, 600 };
17 vector float f1 = { 1.0, 2.0, 3.0, 4.0 };
18 vector float f2 = { 5.0, 6.0, 7.0, 8.0 };
19 vector float f3;
20 vector float addf = { 6.0, 8.0, 10.0, 12.0 };
22 vector int k;
23 vector float f, g, h;
25 int main ()
27 altivec_check(); /* Exits if AltiVec not supported */
29 k = vec_add (a1, a2);
30 if (!vec_all_eq (addi, k))
31 abort ();
33 k = vec_avg (a1, a2);
34 if (!vec_all_eq (k, avgi))
35 abort ();
37 h = vec_add (f1, f2);
38 if (!vec_all_eq (h, addf))
39 abort ();
41 return 0;