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

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile } */ 1 /* { dg-do compile } */
2 2
3 struct __attribute__((aligned (32))) 3 #include "tree-vect.h"
4
5 #if VECTOR_BITS > 256
6 #define ALIGNMENT (VECTOR_BITS / 8)
7 #else
8 #define ALIGNMENT 32
9 #endif
10
11 struct __attribute__((aligned (ALIGNMENT)))
4 { 12 {
5 char misaligner; 13 char misaligner;
6 int foo[100]; 14 int foo[100];
7 int bar[100]; 15 int bar[100];
8 } *a; 16 } *a;