OSDN Git Service

Removed yet another std::ostream reference.
authorLang Hames <lhames@gmail.com>
Fri, 4 Sep 2009 21:03:07 +0000 (21:03 +0000)
committerLang Hames <lhames@gmail.com>
Fri, 4 Sep 2009 21:03:07 +0000 (21:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81042 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/LiveInterval.h

index 830baed..921c557 100644 (file)
@@ -63,9 +63,6 @@ namespace llvm {
     /// Print this index to the given raw_ostream.
     void print(raw_ostream &os) const;
 
-    /// Print this index to the given std::ostream.
-    void print(std::ostream &os) const;
-
     /// Compare two MachineInstrIndex objects for equality.
     bool operator==(MachineInstrIndex other) const {
       return ((index & ~PHI_BIT) == (other.index & ~PHI_BIT));