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 019383cc7cf..83e7b3e5862 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -713,6 +713,9 @@ void MIPrinter::print(const MachineMemOperand &Op) { case PseudoSourceValue::Stack: OS << "stack"; break; + case PseudoSourceValue::GOT: + OS << "got"; + break; case PseudoSourceValue::ConstantPool: OS << "constant-pool"; break; |