diff options
| author | AndreyChurbanov <andrey.churbanov@intel.com> | 2019-11-26 14:37:24 +0300 |
|---|---|---|
| committer | AndreyChurbanov <andrey.churbanov@intel.com> | 2019-11-26 14:37:24 +0300 |
| commit | 5f8b8d282048a9c535a90ab64bbadf576e348963 (patch) | |
| tree | 80fceb63398ec4c332666238130743da3ed992f4 /openmp/runtime | |
| parent | e73f78acd34360f7450b81167d9dc858ccddc262 (diff) | |
| download | bcm5719-llvm-5f8b8d282048a9c535a90ab64bbadf576e348963.tar.gz bcm5719-llvm-5f8b8d282048a9c535a90ab64bbadf576e348963.zip | |
[openmp] Recognise ARMv7ve machine arch.
Patch by raj.khem (Khem Raj)
Differential Revision: https://reviews.llvm.org/D68543
Diffstat (limited to 'openmp/runtime')
| -rw-r--r-- | openmp/runtime/src/kmp_platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/src/kmp_platform.h b/openmp/runtime/src/kmp_platform.h index 35e61a9cf3d..779c08e9771 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 |

