Fix bugpoint

llvm-svn: 19605
This commit is contained in:
Chris Lattner 2005-01-16 04:23:22 +00:00
parent d0a65013ab
commit 8bdd0fc7aa
1 changed files with 1 additions and 2 deletions

View File

@ -211,8 +211,7 @@ Program::ExecuteAndWait(const Path& path,
if (WIFEXITED (status))
return WEXITSTATUS(status);
else if (WIFSIGNALED(status))
throw std::string("Program '") + path.toString() +
"' received terminating signal.";
return 1;
#else
throw std::string(