diff options
author | David Greene <greened@obbligato.org> | 2009-11-12 21:49:55 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-11-12 21:49:55 +0000 |
commit | 9b5fbf226159fc889516396ec979f408a182c136 (patch) | |
tree | 222f916f19fe85548af4669e1bb007e2ad810a54 /lib/CodeGen/PseudoSourceValue.cpp | |
parent | d6cace3a4708a5e41259f53b254a68f2b9e0ca28 (diff) | |
download | external_llvm-9b5fbf226159fc889516396ec979f408a182c136.zip external_llvm-9b5fbf226159fc889516396ec979f408a182c136.tar.gz external_llvm-9b5fbf226159fc889516396ec979f408a182c136.tar.bz2 |
Do some cleanups suggested by Chris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@87034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | lib/CodeGen/PseudoSourceValue.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/PseudoSourceValue.cpp b/lib/CodeGen/PseudoSourceValue.cpp index e95f017..7fb3e6e 100644 --- a/lib/CodeGen/PseudoSourceValue.cpp +++ b/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; +} |