[llvm-commits] [llvm] r81042 - /llvm/trunk/include/llvm/CodeGen/LiveInterval.h
Lang Hames
lhames at gmail.com
Fri Sep 4 14:03:07 PDT 2009
Author: lhames
Date: Fri Sep 4 16:03:07 2009
New Revision: 81042
URL: http://llvm.org/viewvc/llvm-project?rev=81042&view=rev
Log:
Removed yet another std::ostream reference.
Modified:
llvm/trunk/include/llvm/CodeGen/LiveInterval.h
Modified: llvm/trunk/include/llvm/CodeGen/LiveInterval.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LiveInterval.h?rev=81042&r1=81041&r2=81042&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LiveInterval.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LiveInterval.h Fri Sep 4 16:03:07 2009
@@ -63,9 +63,6 @@
/// 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));
More information about the llvm-commits
mailing list