[PATCH] D39558: [TargetParser][AArch64] Reorder enum to preserve 5.0.0 libLLVM ABI.
Chad Rosier via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 2 08:54:10 PDT 2017
mcrosier created this revision.
Herald added subscribers: kristof.beyls, aemerson.
This is required for backporting r311659 to the 5.0.1 release, which is a prerequisite for backporting support for Qualcomm's Saphira CPU to the 5.0.1 release.
PR35060
https://reviews.llvm.org/D39558
Files:
include/llvm/Support/TargetParser.h
Index: include/llvm/Support/TargetParser.h
===================================================================
--- include/llvm/Support/TargetParser.h
+++ include/llvm/Support/TargetParser.h
@@ -167,10 +167,10 @@
AEK_PROFILE = 1 << 6,
AEK_RAS = 1 << 7,
AEK_LSE = 1 << 8,
- AEK_RDM = 1 << 9,
- AEK_SVE = 1 << 10,
- AEK_DOTPROD = 1 << 11,
- AEK_RCPC = 1 << 12
+ AEK_SVE = 1 << 9,
+ AEK_DOTPROD = 1 << 10,
+ AEK_RCPC = 1 << 11,
+ AEK_RDM = 1 << 12
};
StringRef getCanonicalArchName(StringRef Arch);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39558.121325.patch
Type: text/x-patch
Size: 591 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171102/fddb05b1/attachment.bin>
More information about the llvm-commits
mailing list