[PATCH] D45669: [NEON] Fix the architecture condition for the crypto intrinsics
Ivan Kosarev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 17 06:40:53 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL330187: [NEON] Fix the architecture condition for the crypto intrinsics (authored by kosarev, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D45669?vs=142559&id=142766#toc
Repository:
rL LLVM
https://reviews.llvm.org/D45669
Files:
cfe/trunk/include/clang/Basic/arm_neon.td
Index: cfe/trunk/include/clang/Basic/arm_neon.td
===================================================================
--- cfe/trunk/include/clang/Basic/arm_neon.td
+++ cfe/trunk/include/clang/Basic/arm_neon.td
@@ -913,7 +913,7 @@
////////////////////////////////////////////////////////////////////////////////
// Crypto
-let ArchGuard = "__ARM_FEATURE_CRYPTO" in {
+let ArchGuard = "__ARM_ARCH >= 8 && defined(__ARM_FEATURE_CRYPTO)" in {
def AESE : SInst<"vaese", "ddd", "QUc">;
def AESD : SInst<"vaesd", "ddd", "QUc">;
def AESMC : SInst<"vaesmc", "dd", "QUc">;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45669.142766.patch
Type: text/x-patch
Size: 569 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180417/aa4c6a13/attachment.bin>
More information about the cfe-commits
mailing list