diff options
| author | Greg Clayton <gclayton@apple.com> | 2010-09-15 05:51:24 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2010-09-15 05:51:24 +0000 |
| commit | 6dbd39838d785028d521e7916ae938e905340fff (patch) | |
| tree | d49a1980a6340b2724bf3fad1b8b85462e16e658 /lldb/source/Symbol/Function.cpp | |
| parent | ded2fa3991e96dbc7fa159d31453bbb89a28aef4 (diff) | |
| download | bcm5719-llvm-6dbd39838d785028d521e7916ae938e905340fff.tar.gz bcm5719-llvm-6dbd39838d785028d521e7916ae938e905340fff.zip | |
Fixed a missing newline when dumping mixed disassembly.
Added a "bool show_fullpaths" to many more objects that were
previously always dumping full paths.
Fixed a few places where the DWARF was not indexed when we
we needed it to be when making queries. Also fixed an issue
where the DWARF in .o files wasn't searching all .o files
for the types.
Fixed an issue with the output from "image lookup --type <TYPENAME>"
where the name and byte size might not be resolved and might not
display. We now call the accessors so we end up seeing all of the
type info.
llvm-svn: 113951
Diffstat (limited to 'lldb/source/Symbol/Function.cpp')
| -rw-r--r-- | lldb/source/Symbol/Function.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Symbol/Function.cpp b/lldb/source/Symbol/Function.cpp index 8989f2e354d..3c108d7e2b4 100644 --- a/lldb/source/Symbol/Function.cpp +++ b/lldb/source/Symbol/Function.cpp @@ -45,11 +45,11 @@ FunctionInfo::~FunctionInfo() } void -FunctionInfo::Dump(Stream *s) const +FunctionInfo::Dump(Stream *s, bool show_fullpaths) const { if (m_name) *s << ", name = \"" << m_name << "\""; - m_declaration.Dump(s); + m_declaration.Dump(s, show_fullpaths); } @@ -131,9 +131,9 @@ InlineFunctionInfo::Compare(const InlineFunctionInfo& a, const InlineFunctionInf } void -InlineFunctionInfo::Dump(Stream *s) const +InlineFunctionInfo::Dump(Stream *s, bool show_fullpaths) const { - FunctionInfo::Dump(s); + FunctionInfo::Dump(s, show_fullpaths); if (m_mangled) m_mangled.Dump(s); } |

