summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2014-08-27 20:44:26 +0000
committerZachary Turner <zturner@google.com>2014-08-27 20:44:26 +0000
commit0b9bab48bb67e4a1c1eebc811fbd5c80d2e64803 (patch)
tree88d667dd3313fbcf14fbe57138303b4695d9861f
parenta828f2ba4603c8be118af03e6a22ae28e878210b (diff)
downloadbcm5719-llvm-0b9bab48bb67e4a1c1eebc811fbd5c80d2e64803.tar.gz
bcm5719-llvm-0b9bab48bb67e4a1c1eebc811fbd5c80d2e64803.zip
Fix linker error due to missing static variable instantiation.
llvm-svn: 216612
-rw-r--r--lldb/source/Host/posix/HostProcessPosix.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Host/posix/HostProcessPosix.cpp b/lldb/source/Host/posix/HostProcessPosix.cpp
index 1e5a62ffb62..4618de4711d 100644
--- a/lldb/source/Host/posix/HostProcessPosix.cpp
+++ b/lldb/source/Host/posix/HostProcessPosix.cpp
@@ -16,6 +16,8 @@
using namespace lldb_private;
+const lldb::pid_t HostProcessPosix::kInvalidProcessId = 0;
+
HostProcessPosix::HostProcessPosix()
: m_pid(kInvalidProcessId)
{
OpenPOWER on IntegriCloud