diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBModule.i | 2 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBModule.i b/lldb/scripts/Python/interface/SBModule.i index b98afdecde9..ee2d3b42c44 100644 --- a/lldb/scripts/Python/interface/SBModule.i +++ b/lldb/scripts/Python/interface/SBModule.i @@ -222,6 +222,8 @@ public: lldb::SBTypeList FindTypes (const char* type); + lldb::SBType + GetBasicType(lldb::BasicType type); %feature("docstring", " //------------------------------------------------------------------ diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index bc4c2289745..9685c94fcc1 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -560,6 +560,9 @@ public: lldb::SBTypeList FindTypes (const char* type); + lldb::SBType + GetBasicType(lldb::BasicType type); + lldb::SBSourceManager GetSourceManager (); |