* c-c++-common/ubsan/float-cast-overflow-6.c: Add i?86-*-* target.
[official-gcc.git] / gcc / testsuite / gcc.dg / vmx / x-01.c
blob324e83e35a22b0e3ffdeb18436fa7dd5a0aeeef4
1 #include <altivec.h>
2 vector bool char
3 g(vector unsigned char, vector bool char);
5 vector bool char
6 f(vector bool char b, vector unsigned char d)
8 vector bool char *p = &b;
9 *p = g(d,b);
10 return *p;
13 vector bool char b8;
14 vector unsigned char u8;
15 vector bool char
16 g(vector unsigned char a, vector bool char b)
18 return b8;
21 int main()
23 f(b8, u8);
24 return 0;