From: walter erquinigo Date: Tue, 25 Apr 2023 19:46:34 +0000 (-0500) Subject: [LLDB][REPL] Destroy the repl instances correctly X-Git-Tag: upstream/17.0.6~10455 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59a39c2fc91ed5b750083bc51dc43b6510a501b6;p=platform%2Fupstream%2Fllvm.git [LLDB][REPL] Destroy the repl instances correctly This change ensures that the REPL map inside Target is destroyed correctly when `Target::Destroy()` is invoked. Not doing so results in the REPL not finishing its job when the debugger is initialized in REPL mode reading from a file. In my particular case, my REPL doesn't print the stdout of the last expression in the input file unless I include this change. Differential Revision: https://reviews.llvm.org/D149180 --- diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index c5946d1..4f3c644 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -293,6 +293,7 @@ void Target::Destroy() { m_stop_hooks.clear(); m_stop_hook_next_id = 0; m_suppress_stop_hooks = false; + m_repl_map.clear(); Args signal_args; ClearDummySignals(signal_args); }