Remove the std::ostream form of PseudoSourceValue's print,
authorDan Gohman <gohman@apple.com>
Wed, 27 Aug 2008 16:19:44 +0000 (16:19 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 27 Aug 2008 16:19:44 +0000 (16:19 +0000)
which isn't needed anymore.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55419 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/PseudoSourceValue.cpp

index 8c9de810597dbd9ef8334aa093cb7f503f5db863..5247906c46dbf95bc0be63094ca0e0a01c104389 100644 (file)
@@ -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;
     }