From: Chris Lattner Date: Wed, 12 Jul 2006 22:37:18 +0000 (+0000) Subject: Turn an if into an else if. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0228c0fc8d545b4b49b8c1d2dd455af6758612e2;p=oota-llvm.git Turn an if into an else if. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29129 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc index 86a54316179..1bf1bc91f81 100644 --- a/lib/System/Unix/Program.inc +++ b/lib/System/Unix/Program.inc @@ -208,12 +208,12 @@ Program::ExecuteAndWait(const Path& path, // Return the proper exit status. 0=success, >0 is programs' exit status, // <0 means a signal was returned, -9999999 means the program dumped core. int result = 0; - if (WIFEXITED (status)) + if (WIFEXITED(status)) result = WEXITSTATUS(status); else if (WIFSIGNALED(status)) result = 0 - WTERMSIG(status); #ifdef WCOREDUMP - if (WCOREDUMP(status)) + else if (WCOREDUMP(status)) result |= 0x01000000; #endif return result;