Skip to content

Commit 10ce5f8

Browse files
committed
Add missing MIR serialization text for AArch64II::MO_TAGGED.
Reviewers: pcc Subscribers: javed.absar, kristof.beyls, hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D66312 llvm-svn: 369053
1 parent 7049b0a commit 10ce5f8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

llvm/lib/Target/AArch64/AArch64InstrInfo.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4767,10 +4767,13 @@ AArch64InstrInfo::getSerializableBitmaskMachineOperandTargetFlags() const {
47674767

47684768
static const std::pair<unsigned, const char *> TargetFlags[] = {
47694769
{MO_COFFSTUB, "aarch64-coffstub"},
4770-
{MO_GOT, "aarch64-got"}, {MO_NC, "aarch64-nc"},
4771-
{MO_S, "aarch64-s"}, {MO_TLS, "aarch64-tls"},
4770+
{MO_GOT, "aarch64-got"},
4771+
{MO_NC, "aarch64-nc"},
4772+
{MO_S, "aarch64-s"},
4773+
{MO_TLS, "aarch64-tls"},
47724774
{MO_DLLIMPORT, "aarch64-dllimport"},
4773-
{MO_PREL, "aarch64-prel"}};
4775+
{MO_PREL, "aarch64-prel"},
4776+
{MO_TAGGED, "aarch64-tagged"}};
47744777
return makeArrayRef(TargetFlags);
47754778
}
47764779

0 commit comments

Comments
 (0)