mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix bugpoint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19605 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ccad8439e0
commit
8102fcde4c
@ -211,8 +211,7 @@ Program::ExecuteAndWait(const Path& path,
|
|||||||
if (WIFEXITED (status))
|
if (WIFEXITED (status))
|
||||||
return WEXITSTATUS(status);
|
return WEXITSTATUS(status);
|
||||||
else if (WIFSIGNALED(status))
|
else if (WIFSIGNALED(status))
|
||||||
throw std::string("Program '") + path.toString() +
|
return 1;
|
||||||
"' received terminating signal.";
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
throw std::string(
|
throw std::string(
|
||||||
|
Loading…
Reference in New Issue
Block a user