summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBCommandInterpreter.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-03-08 19:09:27 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-03-08 19:09:27 +0000
commit0d7b0c960d6b2b7d3467d2921aaaa3908684cde1 (patch)
tree39f9ce77ac5b1e75b9a22316f8e6cd591b7c58ad /lldb/source/API/SBCommandInterpreter.cpp
parent3b0a54e138ba2603230f77fafd49aa4dd16cfbd6 (diff)
downloadbcm5719-llvm-0d7b0c960d6b2b7d3467d2921aaaa3908684cde1.tar.gz
bcm5719-llvm-0d7b0c960d6b2b7d3467d2921aaaa3908684cde1.zip
[Reproducers] Add missing LLDB_RECORD_DUMMY macros
Re-ran lldb-inst on the API folder to insert missing LLDB_RECORD_DUMMY macros. llvm-svn: 355711
Diffstat (limited to 'lldb/source/API/SBCommandInterpreter.cpp')
-rw-r--r--lldb/source/API/SBCommandInterpreter.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp
index 59a934a7bb0..83f77c4c790 100644
--- a/lldb/source/API/SBCommandInterpreter.cpp
+++ b/lldb/source/API/SBCommandInterpreter.cpp
@@ -611,6 +611,10 @@ bool SBCommandInterpreter::EventIsCommandInterpreterEvent(
bool SBCommandInterpreter::SetCommandOverrideCallback(
const char *command_name, lldb::CommandOverrideCallback callback,
void *baton) {
+ LLDB_RECORD_DUMMY(bool, SBCommandInterpreter, SetCommandOverrideCallback,
+ (const char *, lldb::CommandOverrideCallback, void *),
+ command_name, callback, baton);
+
if (command_name && command_name[0] && IsValid()) {
llvm::StringRef command_name_str = command_name;
CommandObject *cmd_obj =
OpenPOWER on IntegriCloud