[compiler-rt] [compiler-rt][AArch64] Provide basic implementations of SME memcpy/memmove in case of strictly aligned memory access (PR #138250)
    David Sherwood via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon May 12 01:51:06 PDT 2025
    
    
  
================
@@ -22,3 +23,46 @@ const void *__arm_sc_memchr(const void *src, int c,
 
   return NULL;
 }
+
+#ifndef __ARM_FEATURE_UNALIGNED
+
+static void *memcpy_fwd(void *dest, const void *src,
----------------
david-arm wrote:
OK yeah I see. If it's ok with you, I do think it's better to have the same naming scheme for all the functions and start with `__arm_sc_`
https://github.com/llvm/llvm-project/pull/138250
    
    
More information about the llvm-commits
mailing list