diff options
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 2 | ||||
-rw-r--r-- | lldb/test/functionalities/abbreviation/TestAbbreviations.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 5d4d691dc89..24ee886f12e 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -2807,7 +2807,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-with-args}${function.pc-offset}}}" #define FILE_AND_LINE "{ at ${line.file.basename}:${line.number}}" #define DEFAULT_THREAD_FORMAT "thread #${thread.index}: tid = ${thread.id}"\ diff --git a/lldb/test/functionalities/abbreviation/TestAbbreviations.py b/lldb/test/functionalities/abbreviation/TestAbbreviations.py index eae3ac1cc21..7531ab30efa 100644 --- a/lldb/test/functionalities/abbreviation/TestAbbreviations.py +++ b/lldb/test/functionalities/abbreviation/TestAbbreviations.py @@ -133,7 +133,7 @@ class AbbreviationsTestCase(TestBase): patterns = [ "Process .* stopped", "thread #1:", "a.out", - "sum\(int, int\)", + "sum\(a=1238, b=78392\)", "at main.cpp\:25", "stop reason = breakpoint 2.1" ]) |