diff options
author | Enrico Granata <egranata@apple.com> | 2014-10-21 20:52:14 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-10-21 20:52:14 +0000 |
commit | 622be238eb847fbb15b320028263668d17d7e21f (patch) | |
tree | aeae21a749b75277b35b4a54c6b7a9c4a076b8a8 /lldb/scripts/Python/interface | |
parent | a61262f989d802b3a38e965a50159274a6d154fa (diff) | |
download | bcm5719-llvm-622be238eb847fbb15b320028263668d17d7e21f.tar.gz bcm5719-llvm-622be238eb847fbb15b320028263668d17d7e21f.zip |
Expose the type-info flags at the public API layer. These flags provide much more informational content to consumers of the LLDB API than the existing TypeClass. Part of the fix for rdar://18517593
llvm-svn: 220322
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBType.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBType.i b/lldb/scripts/Python/interface/SBType.i index 9c37f89c772..2980cdb4dc7 100644 --- a/lldb/scripts/Python/interface/SBType.i +++ b/lldb/scripts/Python/interface/SBType.i @@ -286,6 +286,9 @@ public: bool IsTypeComplete (); + + uint32_t + GetTypeFlags (); %pythoncode %{ def template_arg_array(self): |