summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectImage.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-02-16 23:00:21 +0000
committerGreg Clayton <gclayton@apple.com>2011-02-16 23:00:21 +0000
commitf4ecaa576c9e24e434260b885033b08ae0a5e966 (patch)
treedcd64b19860db9432ab211398870d0506a72be83 /lldb/source/Commands/CommandObjectImage.cpp
parent9cd649d37648eb3651a00c6703a747ed293c4139 (diff)
downloadbcm5719-llvm-f4ecaa576c9e24e434260b885033b08ae0a5e966.tar.gz
bcm5719-llvm-f4ecaa576c9e24e434260b885033b08ae0a5e966.zip
Clean up a bit of the type getting code where lldb_private:Type now has
clang_type_t GetClangFullType(); // Get a completely defined clang type clang_type_t GetClangLayoutType(); // Get a clang type that can be used for type layout clang_type_t GetClangForwardType(); // A type that can be completed if needed, but is more efficient. llvm-svn: 125691
Diffstat (limited to 'lldb/source/Commands/CommandObjectImage.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectImage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectImage.cpp b/lldb/source/Commands/CommandObjectImage.cpp
index 4843e4ff21a..6b4a89a9c33 100644
--- a/lldb/source/Commands/CommandObjectImage.cpp
+++ b/lldb/source/Commands/CommandObjectImage.cpp
@@ -442,7 +442,7 @@ LookupTypeInModule
{
// Resolve the clang type so that any forward references
// to types that haven't yet been parsed will get parsed.
- type_sp->GetClangType ();
+ type_sp->GetClangFullType ();
type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
}
strm.EOL();
OpenPOWER on IntegriCloud