diff options
author | Jason Molenda <jmolenda@apple.com> | 2015-02-13 23:24:21 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2015-02-13 23:24:21 +0000 |
commit | c980fa92ebac26a059e0d157362e82ae2f0c7d3a (patch) | |
tree | 0de6fab178c9e2f0ad661e8ceb1961fe60296b9c /lldb/source/Breakpoint | |
parent | eff99e8ac53a83bbf9e408f6f59669132b272ae3 (diff) | |
download | bcm5719-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/Breakpoint')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Breakpoint/BreakpointLocation.cpp b/lldb/source/Breakpoint/BreakpointLocation.cpp index 85233c9374c..2179193ff95 100644 --- a/lldb/source/Breakpoint/BreakpointLocation.cpp +++ b/lldb/source/Breakpoint/BreakpointLocation.cpp @@ -590,7 +590,7 @@ BreakpointLocation::GetDescription (Stream *s, lldb::DescriptionLevel level) s->PutCString ("re-exported target = "); else s->PutCString("where = "); - sc.DumpStopContext (s, m_owner.GetTarget().GetProcessSP().get(), m_address, false, true, false, true); + sc.DumpStopContext (s, m_owner.GetTarget().GetProcessSP().get(), m_address, false, true, false, true, true); } else { |