diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-02-08 02:40:32 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-02-08 02:40:32 +0000 |
| commit | 7012049c7fd4d6b04b21a98dad6498b88e30182b (patch) | |
| tree | 461dec4b9dbe853fd2b2e7f252b2bcc5a938014b /lldb/source/Symbol/Block.cpp | |
| parent | a57a66e8d02d30c8b2fe5db85d4de52f22c66646 (diff) | |
| download | bcm5719-llvm-7012049c7fd4d6b04b21a98dad6498b88e30182b.tar.gz bcm5719-llvm-7012049c7fd4d6b04b21a98dad6498b88e30182b.zip | |
Fixed a crasher that could happen when trying to look at N_GSYM entries
in the DWARF + debug map symbol file parser.
Also cleaned up the "image lookup --address ADDR" output when we it results
in something that is in an inlined function. Now we correctly dump out the
full inlined call stack.
llvm-svn: 125072
Diffstat (limited to 'lldb/source/Symbol/Block.cpp')
| -rw-r--r-- | lldb/source/Symbol/Block.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Symbol/Block.cpp b/lldb/source/Symbol/Block.cpp index 2aa8562083b..dbb727e9ac8 100644 --- a/lldb/source/Symbol/Block.cpp +++ b/lldb/source/Symbol/Block.cpp @@ -172,7 +172,7 @@ Block::DumpStopContext // First frame in a frame with inlined functions s->PutCString (" [inlined]"); } - if (show_inline_blocks) + if (show_inline_blocks && child_inline_call_site) s->EOL(); else s->PutChar(' '); |

