mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-11 00:39:36 +00:00
Turn an if into an else if.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29129 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b2c0650ad3
commit
0228c0fc8d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user