1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix a place where the declaration didn't use LLVM_ENABLE_DUMP but the

definition did.

The last part of PR14324.

llvm-svn: 168363
This commit is contained in:
Chandler Carruth 2012-11-20 10:23:50 +00:00
parent 6bdeed2384
commit f6c8834e87

View File

@ -181,7 +181,7 @@ public:
return Queue.begin() + idx;
}
#ifndef NDEBUG
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
void dump();
#endif
};