[PATCH] D66312: Add missing MIR serialization text for AArch64II::MO_TAGGED.
Evgenii Stepanov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 15 15:03:38 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL369053: Add missing MIR serialization text for AArch64II::MO_TAGGED. (authored by eugenis, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D66312?vs=215473&id=215474#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66312/new/
https://reviews.llvm.org/D66312
Files:
llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp
Index: llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp
===================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp
+++ llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp
@@ -4767,10 +4767,13 @@
static const std::pair<unsigned, const char *> TargetFlags[] = {
{MO_COFFSTUB, "aarch64-coffstub"},
- {MO_GOT, "aarch64-got"}, {MO_NC, "aarch64-nc"},
- {MO_S, "aarch64-s"}, {MO_TLS, "aarch64-tls"},
+ {MO_GOT, "aarch64-got"},
+ {MO_NC, "aarch64-nc"},
+ {MO_S, "aarch64-s"},
+ {MO_TLS, "aarch64-tls"},
{MO_DLLIMPORT, "aarch64-dllimport"},
- {MO_PREL, "aarch64-prel"}};
+ {MO_PREL, "aarch64-prel"},
+ {MO_TAGGED, "aarch64-tagged"}};
return makeArrayRef(TargetFlags);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66312.215474.patch
Type: text/x-patch
Size: 804 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190815/6d96c9f5/attachment.bin>
More information about the llvm-commits
mailing list