MIR Serialization: Serialize the jump table pseudo source values.

llvm-svn: 244813
This commit is contained in:
Alex Lorenz
2015-08-12 21:11:08 +00:00
parent c25c9fdf08
commit 4be56e9370
5 changed files with 85 additions and 1 deletions

View File

@@ -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;