diff options
author | Greg Clayton <gclayton@apple.com> | 2011-01-29 07:10:55 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-01-29 07:10:55 +0000 |
commit | 513c26ce9ddebe5adbcb068e88b452a904ee6f8d (patch) | |
tree | 4b06c857d67e39f2202c1fee7af2237029b93c8f /lldb/source/Core/Address.cpp | |
parent | fd4834061c5b1e6e056d0d53da72980ae44b638e (diff) | |
download | bcm5719-llvm-513c26ce9ddebe5adbcb068e88b452a904ee6f8d.tar.gz bcm5719-llvm-513c26ce9ddebe5adbcb068e88b452a904ee6f8d.zip |
Finished up the async attach support. This allows us to request to attach
by name or by pid (with or without waiting for a process to launch) and
catch the response asynchronously.
llvm-svn: 124530
Diffstat (limited to 'lldb/source/Core/Address.cpp')
-rw-r--r-- | lldb/source/Core/Address.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Address.cpp b/lldb/source/Core/Address.cpp index fadbef25715..967ccd0d3c2 100644 --- a/lldb/source/Core/Address.cpp +++ b/lldb/source/Core/Address.cpp @@ -576,7 +576,7 @@ Address::Dump (Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, Dum bool show_stop_context = true; const bool show_module = (style == DumpStyleResolvedDescription); const bool show_fullpaths = false; - const bool show_inlined_frames = false; + const bool show_inlined_frames = true; if (sc.function == NULL && sc.symbol != NULL) { // If we have just a symbol make sure it is in the right section |