diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2017-12-13 10:30:59 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2017-12-13 10:30:59 +0000 |
commit | b41dbbe32582dcfe18e6ea763886fabf5fd7c84d (patch) | |
tree | 5c8b1ce5df3a97533818dcd4d340c1ee09265c13 /llvm/lib/CodeGen/MachineOperand.cpp | |
parent | b3a0d513749623b8ee51183c127be74350052426 (diff) | |
download | bcm5719-llvm-b41dbbe32582dcfe18e6ea763886fabf5fd7c84d.tar.gz bcm5719-llvm-b41dbbe32582dcfe18e6ea763886fabf5fd7c84d.zip |
[CodeGen] Print jump-table index operands as %jump-table.0 in both MIR and debug output
Work towards the unification of MIR and debug output by printing `%jump-table.0` instead of `<jt#0>`.
Only debug syntax is affected.
llvm-svn: 320566
Diffstat (limited to 'llvm/lib/CodeGen/MachineOperand.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineOperand.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineOperand.cpp b/llvm/lib/CodeGen/MachineOperand.cpp index cd8c86e782a..82e635d9c62 100644 --- a/llvm/lib/CodeGen/MachineOperand.cpp +++ b/llvm/lib/CodeGen/MachineOperand.cpp @@ -14,6 +14,7 @@ #include "llvm/CodeGen/MachineOperand.h" #include "llvm/Analysis/Loads.h" #include "llvm/CodeGen/MIRPrinter.h" +#include "llvm/CodeGen/MachineJumpTableInfo.h" #include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/CodeGen/TargetInstrInfo.h" #include "llvm/CodeGen/TargetRegisterInfo.h" @@ -523,7 +524,7 @@ void MachineOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, break; } case MachineOperand::MO_JumpTableIndex: - OS << "<jt#" << getIndex() << '>'; + OS << printJumpTableEntryReference(getIndex()); break; case MachineOperand::MO_GlobalAddress: OS << "<ga:"; |