diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-16 04:23:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-16 04:23:22 +0000 |
commit | 8102fcde4cad92b0ec7ebfda593ed20ded63f0e0 (patch) | |
tree | 3b244e2632a38c0cbb23e47a5be8d12fa89fa298 /lib/System/Unix/Program.inc | |
parent | ccad8439e05129f74bbb57c48718d94f410671bb (diff) |
Fix bugpoint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19605 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix/Program.inc')
-rw-r--r-- | lib/System/Unix/Program.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc index 1bd3eae0f9..484ce0f8c8 100644 --- a/lib/System/Unix/Program.inc +++ b/lib/System/Unix/Program.inc @@ -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( |