comparison gcc/testsuite/gcc.dg/vect/vect-75.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-require-effective-target vect_int } */ 1 /* { dg-require-effective-target vect_int } */
2 2
3 #include <stdarg.h> 3 #include <stdarg.h>
4 #include "tree-vect.h" 4 #include "tree-vect.h"
5 5
6 #if VECTOR_BITS > 128
7 #define N (VECTOR_BITS * 2 / 32)
8 #define OFF (VECTOR_BITS / 32)
9 #else
6 #define N 8 10 #define N 8
7 #define OFF 8 11 #define OFF 8
12 #endif
8 13
9 /* Check handling of accesses for which the "initial condition" - 14 /* Check handling of accesses for which the "initial condition" -
10 the expression that represents the first location accessed - is 15 the expression that represents the first location accessed - is
11 more involved than just an ssa_name. */ 16 more involved than just an ssa_name. */
12 17
43 } 48 }
44 49
45 50
46 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */ 51 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
47 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 1 "vect" { target { vect_no_align && { ! vect_hw_misalign } } } } } */ 52 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 1 "vect" { target { vect_no_align && { ! vect_hw_misalign } } } } } */
48 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail { vect_no_align && { ! vect_hw_misalign } } } } } */ 53 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 2 "vect" { target { ! vect_align_stack_vars } xfail { ! vect_unaligned_possible } } } } */
54 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { target vect_align_stack_vars xfail { ! vect_unaligned_possible } } } } */