diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:34:26 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:34:26 +0000 |
commit | da23d93d9bb6238757e29b1abee571a0052ab8fc (patch) | |
tree | 2df53a6db319e833c9ec8dce7e9ced0ee5e861cc | |
parent | 85e9e888420e309eb639ca6994971116d216d5cc (diff) |
Fix a build error and change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92669 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/ConstantsContext.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/VMCore/ConstantsContext.h b/lib/VMCore/ConstantsContext.h index 60ae13d238..08224e4488 100644 --- a/lib/VMCore/ConstantsContext.h +++ b/lib/VMCore/ConstantsContext.h @@ -17,6 +17,7 @@ #include "llvm/Instructions.h" #include "llvm/Operator.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include <map> @@ -763,7 +764,7 @@ public: } void dump() const { - DEBUG(errs() << "Constant.cpp: ConstantUniqueMap\n"); + DEBUG(dbgs() << "Constant.cpp: ConstantUniqueMap\n"); } }; |