1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Fix a build error and change errs() to dbgs().

llvm-svn: 92669
This commit is contained in:
David Greene 2010-01-05 01:34:26 +00:00
parent 4c591a29fd
commit a2eb2bde9e

View File

@ -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");
}
};