Handle T_HRESULT types in CodeView records
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-logical-other-char.c
blobce46de4b667081331c9fe0b1bd5070e8fa3b5cde
1 /* Verify that overloaded built-ins for vec_orc and vec_nand with char
2 * inputs produce the right results. These intrinsics (vec_orc,
3 * vec_nand) were added as part of ISA 2.07 (P8). */
5 /* { dg-do compile } */
6 /* { dg-options "-mvsx -O1" } */
7 /* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */
8 /* { dg-require-effective-target powerpc_vsx } */
10 #include <altivec.h>
12 vector signed char
13 test1_orc (vector bool char x, vector signed char y)
15 vector signed char *foo;
16 *foo += vec_orc (x, y);
17 return *foo;
20 vector signed char
21 test1_nand (vector bool char x, vector signed char y)
23 vector signed char *foo;
24 *foo += vec_nand (x, y);
25 return *foo;
28 vector signed char
29 test2_orc (vector signed char x, vector bool char y)
31 vector signed char *foo;
32 *foo += vec_orc (x, y);
33 return *foo;
36 vector signed char
37 test2_nand (vector signed char x, vector bool char y)
39 vector signed char *foo;
40 *foo += vec_nand (x, y);
41 return *foo;
44 vector signed char
45 test3_orc (vector signed char x, vector signed char y)
47 vector signed char *foo;
48 *foo += vec_orc (x, y);
49 return *foo;
52 vector signed char
53 test3_nand (vector signed char x, vector signed char y)
55 vector signed char *foo;
56 *foo += vec_nand (x, y);
57 return *foo;
60 vector unsigned char
61 test4_orc (vector bool char x, vector unsigned char y)
63 vector unsigned char *foo;
64 *foo += vec_orc (x, y);
65 return *foo;
68 vector unsigned char
69 test4_nand (vector bool char x, vector unsigned char y)
71 vector unsigned char *foo;
72 *foo += vec_nand (x, y);
73 return *foo;
76 vector unsigned char
77 test5_orc (vector unsigned char x, vector bool char y)
79 vector unsigned char *foo;
80 *foo += vec_orc (x, y);
81 return *foo;
84 vector unsigned char
85 test5_nand (vector unsigned char x, vector bool char y)
87 vector unsigned char *foo;
88 *foo += vec_nand (x, y);
89 return *foo;
92 vector unsigned char
93 test6_orc (vector unsigned char x, vector unsigned char y)
95 vector unsigned char *foo;
96 *foo += vec_orc (x, y);
97 return *foo;
100 vector unsigned char
101 test6_nand (vector unsigned char x, vector unsigned char y)
103 vector unsigned char *foo;
104 *foo += vec_nand (x, y);
105 return *foo;
108 /* { dg-final { scan-assembler-times {\mxxlnand\M} 6 } } */
109 /* { dg-final { scan-assembler-times {\mxxlorc\M} 6 } } */