diff options
author | Lang Hames <lhames@gmail.com> | 2009-09-04 21:03:07 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2009-09-04 21:03:07 +0000 |
commit | 056fc97aaab9f2ae097ee243175fb21a871b5462 (patch) | |
tree | f15b8455e22fa226db5f39809d551f888bbaeca7 /include | |
parent | 5cd57b09b71bd03b36c5d64707d50d05ca34618c (diff) | |
download | external_llvm-056fc97aaab9f2ae097ee243175fb21a871b5462.zip external_llvm-056fc97aaab9f2ae097ee243175fb21a871b5462.tar.gz external_llvm-056fc97aaab9f2ae097ee243175fb21a871b5462.tar.bz2 |
Removed yet another std::ostream reference.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81042 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/LiveInterval.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index 830baed..921c557 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)); |