MIR Serialization: Serialize the jump table pseudo source values.

llvm-svn: 244813
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp
index 83e7b3e..367626a 100644
--- a/llvm/lib/CodeGen/MIRPrinter.cpp
+++ b/llvm/lib/CodeGen/MIRPrinter.cpp
@@ -716,6 +716,9 @@
     case PseudoSourceValue::GOT:
       OS << "got";
       break;
+    case PseudoSourceValue::JumpTable:
+      OS << "jump-table";
+      break;
     case PseudoSourceValue::ConstantPool:
       OS << "constant-pool";
       break;