annotate gcc/testsuite/gcc.dg/torture/vshuf-v2df.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-do run } */
kono
parents:
diff changeset
2 /* { dg-options "-DEXPENSIVE" { target run_expensive_tests } } */
kono
parents:
diff changeset
3 /* { dg-options "-fno-common" { target hppa*-*-hpux* } } */
kono
parents:
diff changeset
4 /* { dg-skip-if "" { ! run_expensive_tests } { "*" } { "-O2" } } */
kono
parents:
diff changeset
5 /* { dg-skip-if "" { ! run_expensive_tests } { "-flto" } { "" } } */
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 #if __SIZEOF_DOUBLE__ == 8 && __SIZEOF_LONG_LONG__ == 8
kono
parents:
diff changeset
8 typedef double V __attribute__((vector_size(16)));
kono
parents:
diff changeset
9 typedef unsigned long long VI __attribute__((vector_size(16)));
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 #include "vshuf-2.inc"
kono
parents:
diff changeset
15 #include "vshuf-main.inc"