[llvm-commits] CVS: llvm/lib/System/Unix/Program.inc
Chris Lattner
lattner at cs.uiuc.edu
Sat Jan 15 20:23:35 PST 2005
Changes in directory llvm/lib/System/Unix:
Program.inc updated: 1.10 -> 1.11
---
Log message:
Fix bugpoint
---
Diffs of the changes: (+1 -2)
Index: llvm/lib/System/Unix/Program.inc
diff -u llvm/lib/System/Unix/Program.inc:1.10 llvm/lib/System/Unix/Program.inc:1.11
--- llvm/lib/System/Unix/Program.inc:1.10 Mon Dec 27 00:16:52 2004
+++ llvm/lib/System/Unix/Program.inc Sat Jan 15 22:23:22 2005
@@ -211,8 +211,7 @@
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(
More information about the llvm-commits
mailing list