[libc-commits] [libc] bdcc5aa - [libc] Add _64 element to aarch64

Guillaume Chatelet via libc-commits libc-commits at lists.llvm.org
Wed Dec 1 00:20:31 PST 2021


Author: Guillaume Chatelet
Date: 2021-12-01T08:20:21Z
New Revision: bdcc5aadf5aa90f36b5a964e2285dc6a3b244ed9

URL: https://github.com/llvm/llvm-project/commit/bdcc5aadf5aa90f36b5a964e2285dc6a3b244ed9
DIFF: https://github.com/llvm/llvm-project/commit/bdcc5aadf5aa90f36b5a964e2285dc6a3b244ed9.diff

LOG: [libc] Add _64 element to aarch64

Added: 
    

Modified: 
    libc/src/string/memory_utils/elements_aarch64.h

Removed: 
    


################################################################################
diff  --git a/libc/src/string/memory_utils/elements_aarch64.h b/libc/src/string/memory_utils/elements_aarch64.h
index 0c8990cd6f054..57d56a482d8ec 100644
--- a/libc/src/string/memory_utils/elements_aarch64.h
+++ b/libc/src/string/memory_utils/elements_aarch64.h
@@ -110,8 +110,10 @@ struct N32 {
 };
 
 using _32 = N32;
+using _64 = Repeated<_32, 2>;
 #else
 using _32 = __llvm_libc::scalar::_32;
+using _64 = __llvm_libc::scalar::_64;
 #endif // __ARM_NEON
 
 } // namespace aarch64


        


More information about the libc-commits mailing list