From: Richard Biener Date: Mon, 16 Feb 2026 09:20:52 +0000 (+0100) Subject: testsuite/103515 - adjust gcc.target/powerpc/pr103515.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5388fd3a3b65ccb8949c504234b03512998fef91;p=thirdparty%2Fgcc.git testsuite/103515 - adjust gcc.target/powerpc/pr103515.c The following marks the loop in foo1 as to not be vectorized to restore old -O2 behavior and restore what the testcase was supposed to verify. PR testsuite/103515 * gcc.target/powerpc/pr103515.c: Mark the loop in foo1 with #pramga GCC novector. --- diff --git a/gcc/testsuite/gcc.target/powerpc/pr103515.c b/gcc/testsuite/gcc.target/powerpc/pr103515.c index 698b9a93037..20cf9ebd6ea 100644 --- a/gcc/testsuite/gcc.target/powerpc/pr103515.c +++ b/gcc/testsuite/gcc.target/powerpc/pr103515.c @@ -13,6 +13,7 @@ void foo1 () { int i; +#pragma GCC novector for (i = 0; i < n; i++) c1[i] += a1[i] + b1[i]; }