summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/Section.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-10-27 03:32:59 +0000
committerGreg Clayton <gclayton@apple.com>2010-10-27 03:32:59 +0000
commit73b472d42a4c2d1dafa165694456a06b05cb408a (patch)
tree08048a8c2adc8eba74148f0ea5966e19f2fdaebc /lldb/source/Core/Section.cpp
parentd95ccd58a9fd96880c94ca995b334501738df5e8 (diff)
downloadbcm5719-llvm-73b472d42a4c2d1dafa165694456a06b05cb408a.tar.gz
bcm5719-llvm-73b472d42a4c2d1dafa165694456a06b05cb408a.zip
Updated the lldb_private::Flags class to have better method names and made
all of the calls inlined in the header file for better performance. Fixed the summary for C string types (array of chars (with any combo if modifiers), and pointers to chars) work in all cases. Fixed an issue where a forward declaration to a clang type could cause itself to resolve itself more than once if, during the resolving of the type itself it caused something to try and resolve itself again. We now remove the clang type from the forward declaration map in the DWARF parser when we start to resolve it and avoid this additional call. This should stop any duplicate members from appearing and throwing all the alignment of structs, unions and classes. llvm-svn: 117437
Diffstat (limited to 'lldb/source/Core/Section.cpp')
-rw-r--r--lldb/source/Core/Section.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp
index 3dae577c5c8..28935b2249c 100644
--- a/lldb/source/Core/Section.cpp
+++ b/lldb/source/Core/Section.cpp
@@ -248,7 +248,7 @@ Section::Dump (Stream *s, Target *target) const
range.Dump (s, 0);
}
- s->Printf("%c 0x%8.8llx 0x%8.8llx 0x%8.8x ", resolved ? ' ' : '*', m_file_offset, m_file_size, GetAllFlagBits());
+ s->Printf("%c 0x%8.8llx 0x%8.8llx 0x%8.8x ", resolved ? ' ' : '*', m_file_offset, m_file_size, Get());
DumpName (s);
OpenPOWER on IntegriCloud