Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-logical-ands-char.c
blobd1f66f434add000b655f654988d35c0de7cdeabf
1 /* Verify that overloaded built-ins for vec_and and vec_andc
2 * with char inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_vsx_ok } */
6 /* { dg-options "-mvsx -O1" } */
8 #include <altivec.h>
10 vector signed char
11 test1_and (vector bool char x, vector signed char y)
13 vector signed char *foo;
14 *foo += vec_and (x, y);
15 return *foo;
18 vector signed char
19 test1_andc (vector bool char x, vector signed char y)
21 vector signed char *foo;
22 *foo += vec_andc (x, y);
23 return *foo;
26 vector signed char
27 test2_and (vector signed char x, vector bool char y)
29 vector signed char *foo;
30 *foo += vec_and (x, y);
31 return *foo;
34 vector signed char
35 test2_andc (vector signed char x, vector bool char y)
37 vector signed char *foo;
38 *foo += vec_andc (x, y);
39 return *foo;
42 vector signed char
43 test3_and (vector signed char x, vector signed char y)
45 vector signed char *foo;
46 *foo += vec_and (x, y);
47 return *foo;
50 vector signed char
51 test3_andc (vector signed char x, vector signed char y)
53 vector signed char *foo;
54 *foo += vec_andc (x, y);
55 return *foo;
58 vector unsigned char
59 test4_and (vector bool char x, vector unsigned char y)
61 vector unsigned char *foo;
62 *foo += vec_and (x, y);
63 return *foo;
66 vector unsigned char
67 test4_andc (vector bool char x, vector unsigned char y)
69 vector unsigned char *foo;
70 *foo += vec_andc (x, y);
71 return *foo;
74 vector unsigned char
75 test5_and (vector unsigned char x, vector bool char y)
77 vector unsigned char *foo;
78 *foo += vec_and (x, y);
79 return *foo;
82 vector unsigned char
83 test5_andc (vector unsigned char x, vector bool char y)
85 vector unsigned char *foo;
86 *foo += vec_andc (x, y);
87 return *foo;
90 vector unsigned char
91 test6_and (vector unsigned char x, vector unsigned char y)
93 vector unsigned char *foo;
94 *foo += vec_and (x, y);
95 return *foo;
98 vector unsigned char
99 test6_andc (vector unsigned char x, vector unsigned char y)
101 vector unsigned char *foo;
102 *foo += vec_andc (x, y);
103 return *foo;
106 /* { dg-final { scan-assembler-times {\mxxland\M} 6 } } */
107 /* { dg-final { scan-assembler-times {\mxxlandc\M} 6 } } */