diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-08-12 20:44:16 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-12 20:44:16 +0000 |
commit | 46e9558ac6cdf97ccaca60d01fa7fc5b66df6727 (patch) | |
tree | 3728d2287ac146af81214cbceb043626c0229711 /llvm/lib/CodeGen/MIRPrinter.cpp | |
parent | e24c60eb54c1bb1d1a146da79004c90a1ac2e84d (diff) | |
download | bcm5719-llvm-46e9558ac6cdf97ccaca60d01fa7fc5b66df6727.tar.gz bcm5719-llvm-46e9558ac6cdf97ccaca60d01fa7fc5b66df6727.zip |
MIR Serialization: Serialize the stack pseudo source values.
llvm-svn: 244806
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 d47ed979689..019383cc7cf 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -710,6 +710,9 @@ void MIPrinter::print(const MachineMemOperand &Op) { const PseudoSourceValue *PVal = Op.getPseudoValue(); assert(PVal && "Expected a pseudo source value"); switch (PVal->kind()) { + case PseudoSourceValue::Stack: + OS << "stack"; + break; case PseudoSourceValue::ConstantPool: OS << "constant-pool"; break; |