[Lldb-commits] [lldb] r186299 - Commit Timothee Besset's patch to update Host/linux/Host.cpp to keep up

Jason Molenda jmolenda at apple.com
Sun Jul 14 20:25:21 PDT 2013


Author: jmolenda
Date: Sun Jul 14 22:25:21 2013
New Revision: 186299

URL: http://llvm.org/viewvc/llvm-project?rev=186299&view=rev
Log:
Commit Timothee Besset's patch to update Host/linux/Host.cpp to keep up
with the changes in r186211.

Modified:
    lldb/trunk/source/Host/linux/Host.cpp

Modified: lldb/trunk/source/Host/linux/Host.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/linux/Host.cpp?rev=186299&r1=186298&r2=186299&view=diff
==============================================================================
--- lldb/trunk/source/Host/linux/Host.cpp (original)
+++ lldb/trunk/source/Host/linux/Host.cpp Sun Jul 14 22:25:21 2013
@@ -341,7 +341,7 @@ GetELFProcessCPUType (const char *exe_pa
 
     ModuleSpecList specs;
     FileSpec filespec (exe_path, false);
-    const size_t num_specs = ObjectFile::GetModuleSpecifications (filespec, 0, specs);
+    const size_t num_specs = ObjectFile::GetModuleSpecifications (filespec, 0, 0, specs);
     // GetModuleSpecifications() could fail if the executable has been deleted or is locked.
     // But it shouldn't return more than 1 architecture.
     assert(num_specs <= 1 && "Linux plugin supports only a single architecture");





More information about the lldb-commits mailing list