annotate gcc/testsuite/g++.dg/torture/vshuf-v8si.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // { dg-options "-std=c++11" }
kono
parents:
diff changeset
2 // { dg-do run }
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 #if __SIZEOF_INT__ == 4
kono
parents:
diff changeset
5 typedef unsigned int V __attribute__((vector_size(32)));
kono
parents:
diff changeset
6 typedef V VI;
kono
parents:
diff changeset
7 #elif __SIZEOF_LONG__ == 4
kono
parents:
diff changeset
8 typedef unsigned long V __attribute__((vector_size(32)));
kono
parents:
diff changeset
9 typedef V VI;
kono
parents:
diff changeset
10 #else
kono
parents:
diff changeset
11 # define UNSUPPORTED
kono
parents:
diff changeset
12 #endif
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 #define A1 0x11121314
kono
parents:
diff changeset
15 #define B1 0x21222324
kono
parents:
diff changeset
16 #define C1 0x31323334
kono
parents:
diff changeset
17 #define D1 0x41424344
kono
parents:
diff changeset
18 #define E1 0x51525354
kono
parents:
diff changeset
19 #define F1 0x61626364
kono
parents:
diff changeset
20 #define G1 0x71727374
kono
parents:
diff changeset
21 #define H1 0x81828384
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 #define A2 0x91929394
kono
parents:
diff changeset
24 #define B2 0xa1a2a3a4
kono
parents:
diff changeset
25 #define C2 0xb1b2b3b4
kono
parents:
diff changeset
26 #define D2 0xc1c2c3c4
kono
parents:
diff changeset
27 #define E2 0xd1d2d3d4
kono
parents:
diff changeset
28 #define F2 0xe1e2e3e4
kono
parents:
diff changeset
29 #define G2 0xf1f2f3f4
kono
parents:
diff changeset
30 #define H2 0x01020304
kono
parents:
diff changeset
31
kono
parents:
diff changeset
32 #include "vshuf-8.inc"
kono
parents:
diff changeset
33 #include "vshuf-main.inc"