diff options
author | Jim Ingham <jingham@apple.com> | 2012-08-09 20:29:34 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-08-09 20:29:34 +0000 |
commit | 462227b08bc9d6e49d03ea8bb06bb50e104915de (patch) | |
tree | fcde84ebf2c4b59b559b2ef0a4dc32481a85686c | |
parent | 4cbe653aceaa9e2391d03ba91d03a8ae0ed085cc (diff) | |
download | bcm5719-llvm-462227b08bc9d6e49d03ea8bb06bb50e104915de.tar.gz bcm5719-llvm-462227b08bc9d6e49d03ea8bb06bb50e104915de.zip |
Turn on function args by default in thread & frame formats.
<rdar://problem/11703715>
llvm-svn: 161611
-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" ]) |