[Openmp-commits] [openmp] 5f8b8d2 - [openmp] Recognise ARMv7ve machine arch.

via Openmp-commits openmp-commits at lists.llvm.org
Tue Nov 26 03:39:29 PST 2019


Author: AndreyChurbanov
Date: 2019-11-26T14:37:24+03:00
New Revision: 5f8b8d282048a9c535a90ab64bbadf576e348963

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

LOG: [openmp] Recognise ARMv7ve machine arch.

Patch by raj.khem (Khem Raj)

Differential Revision: https://reviews.llvm.org/D68543

Added: 
    

Modified: 
    openmp/runtime/src/kmp_platform.h

Removed: 
    


################################################################################
diff  --git a/openmp/runtime/src/kmp_platform.h b/openmp/runtime/src/kmp_platform.h
index 35e61a9cf3d0..779c08e9771d 100644
--- a/openmp/runtime/src/kmp_platform.h
+++ b/openmp/runtime/src/kmp_platform.h
@@ -143,7 +143,7 @@
 #endif
 
 #if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7R__) ||                     \
-    defined(__ARM_ARCH_7A__)
+    defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7VE__)
 #define KMP_ARCH_ARMV7 1
 #endif
 


        


More information about the Openmp-commits mailing list