From: Lang Hames Date: Fri, 4 Sep 2009 21:03:07 +0000 (+0000) Subject: Removed yet another std::ostream reference. X-Git-Tag: android-x86-6.0-r1~1003^2~15622 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4d44081c8c93ee3a39d448e9404970ab56171ee9;p=android-x86%2Fexternal-llvm.git Removed yet another std::ostream reference. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81042 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index 830baedda49..921c5572b9c 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -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));