From: Mark Seaborn Date: Mon, 27 Jan 2014 22:53:07 +0000 (+0000) Subject: Fix the "#ifndef HAVE_SYS_WAIT_H" code path in Program.inc to compile X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=01df6842c1e8890d8f529683ed6d6e7b6bb172d8;p=oota-llvm.git Fix the "#ifndef HAVE_SYS_WAIT_H" code path in Program.inc to compile Without this fix, WaitResult is not defined. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Unix/Program.inc b/lib/Support/Unix/Program.inc index 78b29714549..5aa024a3352 100644 --- a/lib/Support/Unix/Program.inc +++ b/lib/Support/Unix/Program.inc @@ -418,6 +418,7 @@ ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait, #else if (ErrMsg) *ErrMsg = "Program::Wait is not implemented on this platform yet!"; + ProcessInfo WaitResult; WaitResult.ReturnCode = -2; #endif return WaitResult;