Include LLVMDumpValue in release builds.

This part of the C API is still used in language bindings.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293460 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sam McCall 2017-01-30 05:40:52 +00:00
parent 54490fc7ca
commit ec19b49e1d

View File

@ -643,11 +643,9 @@ void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
unwrap(Val)->setName(Name);
}
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
LLVM_DUMP_METHOD void LLVMDumpValue(LLVMValueRef Val) {
unwrap(Val)->dump();
unwrap(Val)->print(errs(), /*IsForDebug=*/true);
}
#endif
char* LLVMPrintValueToString(LLVMValueRef Val) {
std::string buf;