commit | 4be56e93706f94de488c4ca31e98510bbdd0bc47 | [log] [tgz] |
---|---|---|
author | Alex Lorenz <arphaman@gmail.com> | Wed Aug 12 21:11:08 2015 +0000 |
committer | Alex Lorenz <arphaman@gmail.com> | Wed Aug 12 21:11:08 2015 +0000 |
tree | d49e6fccae5b8862ed954208899ba7bae3edb5c8 | |
parent | c25c9fdf083196d3eb373c73ce34d30674579284 [diff] [blame] |
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;