diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-23 08:43:55 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 08:43:55 +0000 |
| commit | 471ba48cb99a9d9bb8964f63363a3470369c2ecc (patch) | |
| tree | c2df904af193eb7651904e850c607ea08dfbf3e4 /llvm/lib/CodeGen/VirtRegMap.h | |
| parent | 0ad0c21248024f2343810fe3ab3b2d646ffb0ef4 (diff) | |
| download | bcm5719-llvm-471ba48cb99a9d9bb8964f63363a3470369c2ecc.tar.gz bcm5719-llvm-471ba48cb99a9d9bb8964f63363a3470369c2ecc.zip | |
remove some uses of llvm/Support/Streams.h
llvm-svn: 79842
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; |

