[Lldb-commits] [lldb] r115490 - /lldb/trunk/source/Core/Debugger.cpp

Greg Clayton gclayton at apple.com
Sun Oct 3 19:44:26 PDT 2010


Author: gclayton
Date: Sun Oct  3 21:44:26 2010
New Revision: 115490

URL: http://llvm.org/viewvc/llvm-project?rev=115490&view=rev
Log:
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.


Modified:
    lldb/trunk/source/Core/Debugger.cpp

Modified: lldb/trunk/source/Core/Debugger.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Debugger.cpp?rev=115490&r1=115489&r2=115490&view=diff
==============================================================================
--- lldb/trunk/source/Core/Debugger.cpp (original)
+++ lldb/trunk/source/Core/Debugger.cpp Sun Oct  3 21:44:26 2010
@@ -1597,7 +1597,7 @@
     {  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}"\





More information about the lldb-commits mailing list