aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/PseudoSourceValue.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-11-12 21:49:55 +0000
committerDavid Greene <greened@obbligato.org>2009-11-12 21:49:55 +0000
commit033d65581d1af630c498787fe32cad56ad76758c (patch)
tree97afeff5bcac41adbc1ae792b7b0da61dc498658 /llvm/lib/CodeGen/PseudoSourceValue.cpp
parent5fb4e7553cb3f59ef63fe5cb80596e96c59cc945 (diff)
downloadllvm-033d65581d1af630c498787fe32cad56ad76758c.zip
llvm-033d65581d1af630c498787fe32cad56ad76758c.tar.gz
llvm-033d65581d1af630c498787fe32cad56ad76758c.tar.bz2
Do some cleanups suggested by Chris.
llvm-svn: 87034
Diffstat (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r--llvm/lib/CodeGen/PseudoSourceValue.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp
index e95f017..7fb3e6e 100644
--- a/llvm/lib/CodeGen/PseudoSourceValue.cpp
+++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp
@@ -109,3 +109,7 @@ bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
// Spill slots will not alias any LLVM IR value.
return !MFI->isSpillSlotObjectIndex(FI);
}
+
+void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const {
+ OS << "FixedStack" << FI;
+}