mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 20:24:32 +00:00
It was pointed out that DEBUG() is only available with -debug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29106 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -260,7 +260,9 @@ namespace {
|
||||
|
||||
std::map<Value*, unsigned>::iterator I = ValueNodes.find(V);
|
||||
if (I == ValueNodes.end()) {
|
||||
DEBUG(V->dump());
|
||||
#ifndef NDEBUG
|
||||
V->dump();
|
||||
#endif
|
||||
assert(0 && "Value does not have a node in the points-to graph!");
|
||||
}
|
||||
return &GraphNodes[I->second];
|
||||
|
Reference in New Issue
Block a user