[clang] [AArch64][SME2] Fix SME2 mla/mls tests (PR #76711)

Matthew Devereau via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 5 09:18:57 PST 2024


================
@@ -246,7 +246,7 @@ void test_svmls_single2_f64(uint32_t slice_base, svfloat64x2_t zn, svfloat64_t z
 // CPP-CHECK-NEXT:    ret void
 //
 void test_svmls_single4_f64(uint32_t slice_base, svfloat64x4_t zn, svfloat64_t zm) __arm_streaming __arm_shared_za {
-  SVE_ACLE_FUNC(svmls_single_za64,,_f64,,_vg1x4)(slice_base, zn, zm);
+  SVE_ACLE_FUNC(svmls,_single,_za64,_f64,_vg1x4)(slice_base, zn, zm);
----------------
MDevereau wrote:

Ah I see what you mean now. Some tests inside `acle_sme2_mlsl.c` were suffering from the same fate too. I've changed them now. Thanks for pointing this out.

https://github.com/llvm/llvm-project/pull/76711


More information about the cfe-commits mailing list