From: Dan Gohman Date: Wed, 27 Aug 2008 16:19:44 +0000 (+0000) Subject: Remove the std::ostream form of PseudoSourceValue's print, X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a8b8332e81cb2eb1dfed70ff507e752f7fef5479;p=oota-llvm.git Remove the std::ostream form of PseudoSourceValue's print, which isn't needed anymore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55419 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PseudoSourceValue.cpp b/lib/CodeGen/PseudoSourceValue.cpp index 8c9de810597..5247906c46d 100644 --- a/lib/CodeGen/PseudoSourceValue.cpp +++ b/lib/CodeGen/PseudoSourceValue.cpp @@ -57,9 +57,6 @@ namespace { 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; }