From: Richard Biener Date: Fri, 15 Jan 2021 13:03:37 +0000 (+0100) Subject: testsuite/96147 - align vector access X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b36c9cd09472c8efb8405726b7cc94fa4ae7059f;p=gcc.git testsuite/96147 - align vector access This aligns p so that the testcase is meaningful for targets without a hw misaligned access. 2021-01-15 Richard Biener PR testsuite/96147 * gcc.dg/vect/bb-slp-32.c: Align p. --- diff --git a/gcc/testsuite/gcc.dg/vect/bb-slp-32.c b/gcc/testsuite/gcc.dg/vect/bb-slp-32.c index 020b6365e02..84cc4370f09 100644 --- a/gcc/testsuite/gcc.dg/vect/bb-slp-32.c +++ b/gcc/testsuite/gcc.dg/vect/bb-slp-32.c @@ -8,6 +8,7 @@ int foo (int *p, int a, int b) int x[4]; int tem0, tem1, tem2, tem3; int sum = 0; + p = __builtin_assume_aligned (p, __BIGGEST_ALIGNMENT__); tem0 = p[0] + 1 + a; sum += tem0; x[0] = tem0;