[Lldb-commits] [lldb] r355465 - [Reproducers] Undef LLDB_REPRO_INSTR_TRACE
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 5 17:00:36 PST 2019
Author: jdevlieghere
Date: Tue Mar 5 17:00:36 2019
New Revision: 355465
URL: http://llvm.org/viewvc/llvm-project?rev=355465&view=rev
Log:
[Reproducers] Undef LLDB_REPRO_INSTR_TRACE
Forgot to undef this before landing.
Modified:
lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h
Modified: lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h?rev=355465&r1=355464&r2=355465&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h (original)
+++ lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h Tue Mar 5 17:00:36 2019
@@ -21,7 +21,7 @@
// Define LLDB_REPRO_INSTR_TRACE to trace to stderr instead of LLDB's log
// infrastructure. This is useful when you need to see traces before the logger
// is initialized or enabled.
-#define LLDB_REPRO_INSTR_TRACE
+// #define LLDB_REPRO_INSTR_TRACE
#define LLDB_REGISTER_CONSTRUCTOR(Class, Signature) \
Register<Class * Signature>(&construct<Class Signature>::doit, "", #Class, \
More information about the lldb-commits
mailing list