[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 10:53:09 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL317222: [TargetParser][AArch64] Reorder enum to preserve 5.0.0 libLLVM ABI. (authored by mcrosier).

Changed prior to commit:
  https://reviews.llvm.org/D39558?vs=121325&id=121335#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D39558

Files:
  llvm/trunk/include/llvm/Support/TargetParser.h


Index: llvm/trunk/include/llvm/Support/TargetParser.h
===================================================================
--- llvm/trunk/include/llvm/Support/TargetParser.h
+++ llvm/trunk/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.121335.patch
Type: text/x-patch
Size: 624 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171102/aad32e72/attachment.bin>


More information about the llvm-commits mailing list