[llvm-commits] [llvm] r55419 - /llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp
Dan Gohman
gohman at apple.com
Wed Aug 27 09:19:44 PDT 2008
Author: djg
Date: Wed Aug 27 11:19:44 2008
New Revision: 55419
URL: http://llvm.org/viewvc/llvm-project?rev=55419&view=rev
Log:
Remove the std::ostream form of PseudoSourceValue's print,
which isn't needed anymore.
Modified:
llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp
Modified: llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp?rev=55419&r1=55418&r2=55419&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp (original)
+++ llvm/trunk/lib/CodeGen/PseudoSourceValue.cpp Wed Aug 27 11:19:44 2008
@@ -57,9 +57,6 @@
virtual bool isConstant(const MachineFrameInfo *MFI) const;
- virtual void print(std::ostream &OS) const {
- OS << "FixedStack" << FI;
- }
virtual void print(raw_ostream &OS) const {
OS << "FixedStack" << FI;
}
More information about the llvm-commits
mailing list