annotate gcc/testsuite/g++.dg/torture/vshuf-v4di.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +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_LONG_LONG__ == 8
kono
parents:
diff changeset
5 typedef unsigned long long V __attribute__((vector_size(32)));
kono
parents:
diff changeset
6 typedef V VI;
kono
parents:
diff changeset
7 #else
kono
parents:
diff changeset
8 #define UNSUPPORTED
kono
parents:
diff changeset
9 #endif
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 #define A 0x1112131415161718
kono
parents:
diff changeset
12 #define B 0x2122232425262728
kono
parents:
diff changeset
13 #define C 0x3132333435363738
kono
parents:
diff changeset
14 #define D 0x4142434445464748
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 #define W 0xc1c2c3c4c5c6c7c8
kono
parents:
diff changeset
17 #define X 0xd1d2d3d4d5d6d7d8
kono
parents:
diff changeset
18 #define Y 0xe1e2e3e4e5e6e7e8
kono
parents:
diff changeset
19 #define Z 0xf1f2f3f4f5f6f7f8
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 #include "vshuf-4.inc"
kono
parents:
diff changeset
22 #include "vshuf-main.inc"