aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2024-09-27 17:05:21 -0700
committerAdrian Prantl <aprantl@apple.com>2024-09-27 17:05:37 -0700
commit41dca012e5d6a1f8dff640ec82245bb5152e9fb8 (patch)
treeababdf3746f512b9f9b91848e719d03478de9416 /lldb/source/Interpreter/CommandInterpreter.cpp
parent2ddcc4e6b212bf91459689c40049ddedf360a448 (diff)
downloadllvm-41dca012e5d6a1f8dff640ec82245bb5152e9fb8.zip
llvm-41dca012e5d6a1f8dff640ec82245bb5152e9fb8.tar.gz
llvm-41dca012e5d6a1f8dff640ec82245bb5152e9fb8.tar.bz2
Revert "[lldb] Inline expression evaluator error visualization (#106470)"
This reverts commit 49372d1cccf50f404d52d40ae4b663db5604eb2c.
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index d17aa6f..acd592c 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -1887,8 +1887,7 @@ bool CommandInterpreter::HandleCommand(const char *command_line,
CommandReturnObject &result,
bool force_repeat_command) {
std::string command_string(command_line);
- std::string original_command_string(command_string);
- std::string real_original_command_string(command_string);
+ std::string original_command_string(command_line);
Log *log = GetLog(LLDBLog::Commands);
llvm::PrettyStackTraceFormat stack_trace("HandleCommand(command = \"%s\")",
@@ -2077,7 +2076,6 @@ bool CommandInterpreter::HandleCommand(const char *command_line,
}
ElapsedTime elapsed(execute_time);
- cmd_obj->SetOriginalCommandString(real_original_command_string);
cmd_obj->Execute(remainder.c_str(), result);
}