diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-11-17 02:09:07 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-11-17 02:09:07 +0000 |
commit | b2b9c20b6121a54a41ee1c583a4bff4389622da2 (patch) | |
tree | bdd66b28095b94ce17bb9802c6ea45b74446324b /lib/CodeGen/VirtRegMap.h | |
parent | 280b714cd064224c6cfe1724f22cca4d6b8eed37 (diff) |
More removal of std::cerr and DEBUG, replacing with DOUT instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/VirtRegMap.h')
-rw-r--r-- | lib/CodeGen/VirtRegMap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/VirtRegMap.h b/lib/CodeGen/VirtRegMap.h index 426d1cf9b0..c3fe951b37 100644 --- a/lib/CodeGen/VirtRegMap.h +++ b/lib/CodeGen/VirtRegMap.h @@ -24,6 +24,7 @@ namespace llvm { class MachineInstr; class TargetInstrInfo; + class llvm_ostream; class VirtRegMap { public: @@ -144,6 +145,7 @@ namespace llvm { } void print(std::ostream &OS) const; + void print(llvm_ostream &OS) const; void dump() const; }; |