<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Please disregard this commit message. The correct commit message is:<div><br></div><div>If we encounter a fatal error, exit with status 70.  For BSD systems this is<br>defined as an internal software error.  This notifies the driver to report<br>diagnostics information.<br><a href="rdar://11951540">rdar://11951540</a></div><div><br></div><div><br><div><div>On Nov 12, 2012, at 1:32 PM, Chad Rosier <<a href="mailto:mcrosier@apple.com">mcrosier@apple.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Author: mcrosier<br>Date: Mon Nov 12 15:32:44 2012<br>New Revision: 167755<br><br>URL: <a href="http://llvm.org/viewvc/llvm-project?rev=167755&view=rev">http://llvm.org/viewvc/llvm-project?rev=167755&view=rev</a><br>Log:<br>Revert r167620; this can be implemented using an existing CL option.<br><br>Modified:<br>    llvm/trunk/lib/Support/ErrorHandling.cpp<br><br>Modified: llvm/trunk/lib/Support/ErrorHandling.cpp<br>URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/ErrorHandling.cpp?rev=167755&r1=167754&r2=167755&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/ErrorHandling.cpp?rev=167755&r1=167754&r2=167755&view=diff</a><br>==============================================================================<br>--- llvm/trunk/lib/Support/ErrorHandling.cpp (original)<br>+++ llvm/trunk/lib/Support/ErrorHandling.cpp Mon Nov 12 15:32:44 2012<br>@@ -81,7 +81,10 @@<br>   // files registered with RemoveFileOnSignal.<br>   sys::RunInterruptHandlers();<br><br>-  exit(1);<br>+  // When reporting a fatal error, exit with status 70.  For BSD systems this<br>+  // is defined as an internal software error.  This notifies the driver to<br>+  // report diagnostics information.<br>+  exit(70);<br> }<br><br> void llvm::llvm_unreachable_internal(const char *msg, const char *file,<br><br><br>_______________________________________________<br>llvm-commits mailing list<br><a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits<br></blockquote></div><br></div></body></html>