diff options
author | Greg Clayton <gclayton@apple.com> | 2013-07-12 22:07:46 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-07-12 22:07:46 +0000 |
commit | 2540a8a7bc063c4f5236578a5c93f1f5c46a138f (patch) | |
tree | 6e7cc6578129eb1cfbd8f820cd791a3416e68279 /lldb/source/API/SBModuleSpec.cpp | |
parent | c6036aa83127c50162735e8a343623f03a3211fb (diff) | |
download | bcm5719-llvm-2540a8a7bc063c4f5236578a5c93f1f5c46a138f.tar.gz bcm5719-llvm-2540a8a7bc063c4f5236578a5c93f1f5c46a138f.zip |
Fixed GetModuleSpecifications() to work better overall:
- MachO files now correctly extract the UUID all the time
- More file size and offset verification done for universal mach-o files to watch for truncated files
- ObjectContainerBSDArchive now supports enumerating all objects in BSD archives (.a files)
- lldb_private::Module() can not be properly constructed using a ModuleSpec for a .o file in a .a file
- The BSD archive plug-in shares its cache for GetModuleSpecifications() and the create callback
- Improved printing for ModuleSpec objects
llvm-svn: 186211
Diffstat (limited to 'lldb/source/API/SBModuleSpec.cpp')
-rw-r--r-- | lldb/source/API/SBModuleSpec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBModuleSpec.cpp b/lldb/source/API/SBModuleSpec.cpp index 8b7ac1d86f9..654a8ca6ec8 100644 --- a/lldb/source/API/SBModuleSpec.cpp +++ b/lldb/source/API/SBModuleSpec.cpp @@ -175,7 +175,7 @@ SBModuleSpecList::GetModuleSpecifications (const char *path) SBModuleSpecList specs; FileSpec file_spec(path, true); Host::ResolveExecutableInBundle(file_spec); - ObjectFile::GetModuleSpecifications(file_spec, 0, *specs.m_opaque_ap); + ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_ap); return specs; } |