* gcc.dg/vmx/1b-01.c: New.
[official-gcc.git] / gcc / testsuite / gcc.dg / vmx / bug-2.c
blob5cdbc9856cbb527d011435be9fa400f0d7242d13
1 #include "harness.h"
3 static vector unsigned char value =
4 { 0x7c, 0x12, 0x1, 0xd5,
5 0xc3, 0x99, 0x21, 0xe2,
6 0x12, 0x57, 0xde, 0x6b,
7 0x39, 0x66, 0xa8, 0x87 };
9 void initn_c (int p1, int p2, signed char p3, int p4, double p5 ,
10 vector unsigned char p6, signed char p7)
12 check(p1 == 3, "p1");
13 check(p2 == 4, "p2");
14 check(p3 == 5, "p3");
15 check(p4 == 6, "p4");
16 check(p5 == 1, "p5");
17 check(vec_all_eq(p6, value), "p6");
18 check(p7 == 7, "p7");
21 void test()
23 initn_c (3, 4, 5, 6, 1, value, 7);