[AA] Pass query info.
[llvm-project.git] / libc / src / string / memory_utils / cacheline_size_arm.h.inc
blobf3a43e02a4b22f92ba10846ad11bf6e4c7876929
1 // Cache line sizes for ARM: These values are not strictly correct since
2 // cache line sizes depend on implementations, not architectures.  There
3 // are even implementations with cache line sizes configurable at boot
4 // time.
5 #if defined(__ARM_ARCH_5T__) 
6 #define LLVM_LIBC_CACHELINE_SIZE 32
7 #elif defined(__ARM_ARCH_7A__)
8 #define LLVM_LIBC_CACHELINE_SIZE 64
9 #endif