diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2012-04-20 23:59:21 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2012-04-20 23:59:21 +0000 |
| commit | 34d3a38a9caf50b4893155cbcb161d1137554c3d (patch) | |
| tree | 969beb1e89690134eb78f53d4fcaa6490c1b47fa | |
| parent | c931d451cd15bb38270f6242291daa9f904bb237 (diff) | |
| download | bcm5719-llvm-34d3a38a9caf50b4893155cbcb161d1137554c3d.tar.gz bcm5719-llvm-34d3a38a9caf50b4893155cbcb161d1137554c3d.zip | |
Method name change to avoid further conflicts when merging from ToT to branches/lldb-platform-work.
llvm-svn: 155260
| -rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp | 8 | ||||
| -rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp index 67aa6e40160..a1fcaf2b953 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp @@ -580,9 +580,9 @@ PlatformRemoteiOS::GetFileInSDKRoot (const char *platform_file_path, Error -PlatformRemoteiOS::GetFile (const FileSpec &platform_file, - const UUID *uuid_ptr, - FileSpec &local_file) +PlatformRemoteiOS::GetSymbolFile (const FileSpec &platform_file, + const UUID *uuid_ptr, + FileSpec &local_file) { Error error; char platform_file_path[PATH_MAX]; @@ -653,7 +653,7 @@ PlatformRemoteiOS::GetSharedModule (const ModuleSpec &module_spec, FileSpec local_file; const UUID *module_uuid_ptr = module_spec.GetUUIDPtr(); - Error error (GetFile (platform_file, module_uuid_ptr, local_file)); + Error error (GetSymbolFile (platform_file, module_uuid_ptr, local_file)); if (error.Success()) { error = ResolveExecutable (local_file, module_spec.GetArchitecture(), module_sp, NULL); diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h index b3f123505cf..d52c6b09df7 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h @@ -91,9 +91,9 @@ public: GetStatus (lldb_private::Stream &strm); virtual lldb_private::Error - GetFile (const lldb_private::FileSpec &platform_file, - const lldb_private::UUID *uuid_ptr, - lldb_private::FileSpec &local_file); + GetSymbolFile (const lldb_private::FileSpec &platform_file, + const lldb_private::UUID *uuid_ptr, + lldb_private::FileSpec &local_file); virtual lldb_private::Error GetSharedModule (const lldb_private::ModuleSpec &module_spec, |

