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
This commit is contained in:
David Greene 2010-01-05 01:34:26 +00:00
parent 85e9e88842
commit da23d93d9b

View File

@ -17,6 +17,7 @@
#include "llvm/Instructions.h" #include "llvm/Instructions.h"
#include "llvm/Operator.h" #include "llvm/Operator.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
#include <map> #include <map>
@ -763,7 +764,7 @@ public:
} }
void dump() const { void dump() const {
DEBUG(errs() << "Constant.cpp: ConstantUniqueMap\n"); DEBUG(dbgs() << "Constant.cpp: ConstantUniqueMap\n");
} }
}; };