diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2022-01-19 11:38:26 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2022-01-20 18:06:14 -0800 |
commit | 1755f5b1d7b7871672abdf0fde5ccd091b8dbc04 (patch) | |
tree | 130f4734e17fe7a780c72357bbb758173488f6ae /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
parent | f811cb82a6cd811dbb4730009d0f060503aa1c76 (diff) | |
download | llvm-1755f5b1d7b7871672abdf0fde5ccd091b8dbc04.zip llvm-1755f5b1d7b7871672abdf0fde5ccd091b8dbc04.tar.gz llvm-1755f5b1d7b7871672abdf0fde5ccd091b8dbc04.tar.bz2 |
[lldb] Decouple instrumentation from the reproducers
Remove the last remaining references to the reproducers from the
instrumentation. This patch renames the relevant files and macros.
Differential revision: https://reviews.llvm.org/D117712
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index 80e986f..1bf647e 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -37,7 +37,7 @@ #include "lldb/Interpreter/CommandReturnObject.h" #include "lldb/Target/Thread.h" #include "lldb/Target/ThreadPlan.h" -#include "lldb/Utility/ReproducerInstrumentation.h" +#include "lldb/Utility/Instrumentation.h" #include "lldb/Utility/Timer.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringRef.h" |