summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/linux/Host.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-07-15 03:25:21 +0000
committerJason Molenda <jmolenda@apple.com>2013-07-15 03:25:21 +0000
commitd6cfc16ffa77c93a95ca55dc2534302bc099590e (patch)
treea1fae0081e60c4f85e91126b70da8c7dff3f6706 /lldb/source/Host/linux/Host.cpp
parent7a12961bba9f26e474d60abcd855460ab8b547e2 (diff)
downloadbcm5719-llvm-d6cfc16ffa77c93a95ca55dc2534302bc099590e.tar.gz
bcm5719-llvm-d6cfc16ffa77c93a95ca55dc2534302bc099590e.zip
Commit Timothee Besset's patch to update Host/linux/Host.cpp to keep up
with the changes in r186211. llvm-svn: 186299
Diffstat (limited to 'lldb/source/Host/linux/Host.cpp')
-rw-r--r--lldb/source/Host/linux/Host.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/linux/Host.cpp b/lldb/source/Host/linux/Host.cpp
index f6266e67878..ef3c9fbf06f 100644
--- a/lldb/source/Host/linux/Host.cpp
+++ b/lldb/source/Host/linux/Host.cpp
@@ -341,7 +341,7 @@ GetELFProcessCPUType (const char *exe_path, ProcessInstanceInfo &process_info)
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");
OpenPOWER on IntegriCloud