Removed yet another std::ostream reference.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81042 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2009-09-04 21:03:07 +00:00
parent a85d2bb86b
commit 4d44081c8c

View 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));