commit | b3bc115a2414a922caa40d5536d8a35ca54e40e3 | [log] [tgz] |
---|---|---|
author | David Greene <greened@obbligato.org> | Thu Nov 12 21:49:55 2009 +0000 |
committer | David Greene <greened@obbligato.org> | Thu Nov 12 21:49:55 2009 +0000 |
tree | 222f916f19fe85548af4669e1bb007e2ad810a54 | |
parent | 89fccca4b01f148a7244f47e5a484cd793a1c30b [diff] |
Do some cleanups suggested by Chris. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@87034 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@ // Spill slots will not alias any LLVM IR value. return !MFI->isSpillSlotObjectIndex(FI); } + +void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const { + OS << "FixedStack" << FI; +}