[clang] [AArch64][SME]Update intrinsic interface for ld1/st1 (PR #65582)

via cfe-commits cfe-commits at lists.llvm.org
Mon Sep 11 08:39:48 PDT 2023


================
@@ -20,8 +20,10 @@
 // CHECK-NEXT:        ret void
 //
 ARM_STREAMING_ATTR void test_svld1_hor_za8(uint32_t slice_base, svbool_t pg, const void *ptr) {
-  svld1_hor_za8(0, slice_base, 0, pg, ptr);
-  svld1_hor_za8(0, slice_base, 15, pg, ptr);
+  uint32_t slice = slice_base;
----------------
sdesmalen-arm wrote:

Can you remove the variable, such that you have:

  svld1_hor_za8(0, slice_base, pg, ptr);
  svld1_hor_za8(0, slice_base + 15, pg, ptr);

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


More information about the cfe-commits mailing list