<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Oct 28, 2009, at 3:15 PM, John Thompson wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>There's no _longjmp defined in MSVC.  Here's one way to fix the failing Sema/return.c test:</div> </blockquote><div><br></div>Sure, works for me.</div><div><br><blockquote type="cite"><div> </div> <div>Index: Sema/return.c<br>===================================================================<br>--- Sema/return.c       (revision 85400)<br>+++ Sema/return.c       (working copy)<br>@@ -203,7 +203,11 @@<br>   if (j)<br>      longjmp(test30_j, 1);<br>   else<br>+#if defined(_WIN32) || defined(_WIN64)<br>+    longjmp(test30_j, 2);<br>+#else<br>     _longjmp(test30_j, 1);<br>+#endif<br> }</div> <div> typedef void test31_t(int status);<br><br clear="all"><br>-- <br>John Thompson<br><a href="mailto:John.Thompson.JTSoftware@gmail.com">John.Thompson.JTSoftware@gmail.com</a><br><br></div> _______________________________________________<br>cfe-dev mailing list<br><a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br><a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br></blockquote></div><br></body></html>