diff options
author | Greg Clayton <gclayton@apple.com> | 2012-02-24 20:59:25 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-02-24 20:59:25 +0000 |
commit | 38d1f051670df42561ababba2a6f5914e0664254 (patch) | |
tree | 2fd78408c8b884f460a18f19f18ad30d8c040dd7 /lldb/scripts/Python/interface | |
parent | 6ad2115575de962807addcb1cee514930f6c63c1 (diff) | |
download | bcm5719-llvm-38d1f051670df42561ababba2a6f5914e0664254.tar.gz bcm5719-llvm-38d1f051670df42561ababba2a6f5914e0664254.zip |
Fixed the launching code when using the new SBLaunchInfo.
llvm-svn: 151392
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index c0243b8cb05..0990866fafe 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -11,21 +11,8 @@ namespace lldb { class SBLaunchInfo { - public: - SBLaunchInfo (); - - SBLaunchInfo (const char *executable_path, - const char *triple, - const char **argv); - - lldb::SBFileSpec - GetExecutable (); - - void - SetExecutable (const char *path); - - void - SetExecutable (lldb::SBFileSpec executable); +public: + SBLaunchInfo (const char **argv); uint32_t GetUserID(); @@ -45,12 +32,6 @@ class SBLaunchInfo void SetGroupID (uint32_t gid); - const char * - GetTriple (); - - void - SetTriple (const char *triple); - uint32_t GetNumArguments (); |