summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/StackFrame.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2015-02-13 23:24:21 +0000
committerJason Molenda <jmolenda@apple.com>2015-02-13 23:24:21 +0000
commitc980fa92ebac26a059e0d157362e82ae2f0c7d3a (patch)
tree0de6fab178c9e2f0ad661e8ceb1961fe60296b9c /lldb/source/Target/StackFrame.cpp
parenteff99e8ac53a83bbf9e408f6f59669132b272ae3 (diff)
downloadbcm5719-llvm-c980fa92ebac26a059e0d157362e82ae2f0c7d3a.tar.gz
bcm5719-llvm-c980fa92ebac26a059e0d157362e82ae2f0c7d3a.zip
Change the default disassembly format again. First attempt at
changing it was in r219544 - after living on that for a few months, I wanted to take another crack at this. The disassembly-format setting still exists and the old format can be user specified with a setting like ${current-pc-arrow}${addr-file-or-load}{ <${function.name-without-args}${function.concrete-only-addr-offset-no-padding}>}: This patch was discussed in http://reviews.llvm.org/D7578 <rdar://problem/19726421> llvm-svn: 229186
Diffstat (limited to 'lldb/source/Target/StackFrame.cpp')
-rw-r--r--lldb/source/Target/StackFrame.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Target/StackFrame.cpp b/lldb/source/Target/StackFrame.cpp
index 01a8c9ab88f..9a610a5da10 100644
--- a/lldb/source/Target/StackFrame.cpp
+++ b/lldb/source/Target/StackFrame.cpp
@@ -1406,13 +1406,15 @@ StackFrame::Dump (Stream *strm, bool show_frame_index, bool show_fullpaths)
const bool show_module = true;
const bool show_inline = true;
const bool show_function_arguments = true;
+ const bool show_function_name = true;
m_sc.DumpStopContext (strm,
exe_ctx.GetBestExecutionContextScope(),
GetFrameCodeAddress(),
show_fullpaths,
show_module,
show_inline,
- show_function_arguments);
+ show_function_arguments,
+ show_function_name);
}
void
OpenPOWER on IntegriCloud