diff options
author | Carlo Kok <ck@remobjects.com> | 2014-09-19 20:12:24 +0000 |
---|---|---|
committer | Carlo Kok <ck@remobjects.com> | 2014-09-19 20:12:24 +0000 |
commit | b77aba77086f92db9a3b83b308a3fce6dc08f864 (patch) | |
tree | c227a0ea51d17a9805fcd12c90e30d135f7cdc84 /lldb/scripts/Python/interface | |
parent | 615eb7e6097c035e0b64992798fda7c939e93303 (diff) | |
download | bcm5719-llvm-b77aba77086f92db9a3b83b308a3fce6dc08f864.tar.gz bcm5719-llvm-b77aba77086f92db9a3b83b308a3fce6dc08f864.zip |
Fix for 218140 for SBTarget.i, the added functions were in the wrong class definition
llvm-svn: 218147
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index 4de442e0b8b..345929a80dc 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -112,16 +112,6 @@ public: void SetDetachOnError(bool enable); - - lldb::SBValueList - FindGlobalVariables(const char *name, - uint32_t max_matches, - MatchType matchtype); - - lldb::SBSymbolContextList - FindGlobalFunctions(const char *name, - uint32_t max_matches, - MatchType matchtype); }; class SBAttachInfo @@ -672,6 +662,17 @@ public: lldb::SBValue FindFirstGlobalVariable (const char* name); + + lldb::SBValueList + FindGlobalVariables(const char *name, + uint32_t max_matches, + MatchType matchtype); + + lldb::SBSymbolContextList + FindGlobalFunctions(const char *name, + uint32_t max_matches, + MatchType matchtype); + void Clear (); |