diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-08-12 21:11:08 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-12 21:11:08 +0000 |
commit | 4be56e93706f94de488c4ca31e98510bbdd0bc47 (patch) | |
tree | d49e6fccae5b8862ed954208899ba7bae3edb5c8 /llvm/lib/CodeGen/MIRPrinter.cpp | |
parent | c25c9fdf083196d3eb373c73ce34d30674579284 (diff) | |
download | bcm5719-llvm-4be56e93706f94de488c4ca31e98510bbdd0bc47.tar.gz bcm5719-llvm-4be56e93706f94de488c4ca31e98510bbdd0bc47.zip |
MIR Serialization: Serialize the jump table pseudo source values.
llvm-svn: 244813
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; |