comparison gcc/testsuite/gcc.target/powerpc/vec-strir_p-1.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* { dg-do run } */
2 /* { dg-require-effective-target powerpc_future_hw } */
3 /* { dg-options "-mdejagnu-cpu=future" } */
4
5 #include <altivec.h>
6
7 extern void abort (void);
8
9 /* Vector string isolate right-justified on array of unsigned char. */
10 int
11 sirj_p (vector unsigned char arg)
12 {
13 return vec_strir_p (arg);
14 }
15
16 int main (int argc, char *argv [])
17 {
18 vector unsigned char input1 =
19 { 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8,
20 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x11 };
21 vector unsigned char input2 =
22 { 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8,
23 0x9, 0xa, 0xb, 0xc, 0xd, 0x0, 0xf, 0x11 };
24 vector unsigned char input3 =
25 { 0x1, 0x2, 0x0, 0x4, 0x5, 0x6, 0x7, 0x8,
26 0x9, 0xa, 0xb, 0xc, 0xd, 0x0, 0xf, 0x11 };
27 vector unsigned char input4 =
28 { 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8,
29 0x9, 0xa, 0xb, 0xc, 0xd, 0x0, 0xf, 0x11 };
30
31 if (sirj_p (input1))
32 abort ();
33 if (!sirj_p (input2))
34 abort ();
35 if (!sirj_p (input3))
36 abort ();
37 if (!sirj_p (input4))
38 abort ();
39 }