diff options
Diffstat (limited to 'llvm/lib/CodeGen/MIRPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MIRPrinter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index 83e7b3e5862..367626a6e10 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -716,6 +716,9 @@ void MIPrinter::print(const MachineMemOperand &Op) { case PseudoSourceValue::GOT: OS << "got"; break; + case PseudoSourceValue::JumpTable: + OS << "jump-table"; + break; case PseudoSourceValue::ConstantPool: OS << "constant-pool"; break; |