From bb562b13db5ef83ec095d684d544faed9d4075ca Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Mon, 4 Oct 2010 02:44:26 +0000 Subject: [PATCH] Fixed an issue with the default frame format settings string where if a frame was stopped in a module, yet had no valid function for the PC, no module would be displayed. llvm-svn: 115490 --- lldb/source/Core/Debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 8a010ae960c5..eb6e37887474 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1597,7 +1597,7 @@ Debugger::SettingsController::global_settings_table[] = { NULL, eSetVarTypeNone, NULL, NULL, 0, 0, NULL } }; -#define MODULE_WITH_FUNC "{ ${module.file.basename}`${function.name}{${function.pc-offset}}}" +#define MODULE_WITH_FUNC "{ ${module.file.basename}{`${function.name}${function.pc-offset}}}" #define FILE_AND_LINE "{ at ${line.file.basename}:${line.number}}" #define DEFAULT_THREAD_FORMAT "thread #${thread.index}: tid = ${thread.id}"\