mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
These messages should always be emitted when NDEBUG is unset, not when
NDEBUG is unset and -debug is passed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60986 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
23f522a545
commit
44b838d5b5
@ -54,9 +54,9 @@ Value::~Value() {
|
|||||||
// a <badref>
|
// a <badref>
|
||||||
//
|
//
|
||||||
if (!use_empty()) {
|
if (!use_empty()) {
|
||||||
DOUT << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
|
cerr << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
|
||||||
for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
|
for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
|
||||||
DOUT << "Use still stuck around after Def is destroyed:"
|
cerr << "Use still stuck around after Def is destroyed:"
|
||||||
<< **I << "\n";
|
<< **I << "\n";
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user