]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: Replace altivec vector attribute with generic equivalent [PR112822]
authorPeter Bergner <bergner@linux.ibm.com>
Wed, 16 Apr 2025 21:48:59 +0000 (21:48 +0000)
committerPeter Bergner <bergner@linux.ibm.com>
Wed, 16 Apr 2025 21:51:52 +0000 (21:51 +0000)
Usage of the altivec vector attribute requires use of the -maltivec option.
Replace with a generic equivalent which allows building the test case on
multiple other targets and non-altivec ppc cpus, but still diagnoses the
ICE on unfixed compilers.

2025-04-16  Peter Bergner  <bergner@linux.ibm.com>

gcc/testsuite/
PR tree-optimization/112822
* g++.dg/pr112822.C: Replace altivec vector attribute with a generic
vector attribute.

gcc/testsuite/g++.dg/pr112822.C

index a8557522467d72ae069beee92506b0f572a6615f..f88bd833c92df02b5246dbcd25f2242900e80501 100644 (file)
@@ -89,7 +89,7 @@ template <typename aj, typename cm> struct cg<aj, cm> { typedef aj cn; };
 namespace ai {
 template <typename cj, int> cj cp;
 template <typename bu, typename cj, int> void cl(bu *cr, cj cs) { ct(cr, cs); }
-typedef __attribute__((altivec(vector__))) double co;
+typedef double co __attribute__ ((vector_size (16)));
 void ct(double *cr, co cs) { *(co *)cr = cs; }
 struct cq {
   co q;