diff options
Diffstat (limited to 'llvm/lib/CodeGen/VirtRegMap.h')
| -rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.h b/llvm/lib/CodeGen/VirtRegMap.h index 7d1cf95fce0..482ba1bc29e 100644 --- a/llvm/lib/CodeGen/VirtRegMap.h +++ b/llvm/lib/CodeGen/VirtRegMap.h @@ -24,7 +24,6 @@ #include "llvm/ADT/IndexedMap.h" #include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallVector.h" -#include "llvm/Support/Streams.h" #include <map> namespace llvm { @@ -482,25 +481,10 @@ namespace llvm { return 0; } - void print(std::ostream &OS, const Module* M = 0) const; - void print(std::ostream *OS) const { if (OS) print(*OS); } void print(raw_ostream &OS, const Module* M = 0) const; - void print(raw_ostream *OS) const { if (OS) print(*OS); } void dump() const; }; - inline std::ostream *operator<<(std::ostream *OS, const VirtRegMap &VRM) { - VRM.print(OS); - return OS; - } - inline std::ostream &operator<<(std::ostream &OS, const VirtRegMap &VRM) { - VRM.print(OS); - return OS; - } - inline raw_ostream *operator<<(raw_ostream *OS, const VirtRegMap &VRM) { - VRM.print(OS); - return OS; - } inline raw_ostream &operator<<(raw_ostream &OS, const VirtRegMap &VRM) { VRM.print(OS); return OS; |

