Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vmx / 3a-06m.c
blobe616f9aef2ef93d5277097375839d0adb8284965
1 #include "harness.h"
3 vector unsigned int
4 f(vector unsigned int a, vector unsigned int b)
6 return vec_vaddcuw(vec_vaddcuw(a,b),b);
9 static void test()
11 check(vec_all_eq(f(((vector unsigned int){2,4,6,8}),
12 ((vector unsigned int){-1,-2,-3,-4})),
13 ((vector unsigned int){1,0,0,0})),
14 "f");