2009-04-20 Andrew Pinski <andrew_pinski@playstation.sony.com>
* objc/execute/exceptions/handler-1.m: For the NeXT runtime, just return 0.
From-SVN: r146461
+2009-04-20 Andrew Pinski <andrew_pinski@playstation.sony.com>
+
+ * objc/execute/exceptions/handler-1.m: For the NeXT runtime, just return 0.
+
2009-04-20 Tobias Burnus <burnus@net-b.de>
PR fortran/39811
/* Test custom exception handlers */
/* Author: David Ayers */
+#ifdef __NEXT_RUNTIME__
+/* This test only runs for the GNU runtime. */
+
+int main(void)
+{
+ return 0;
+}
+
+#else
+
#include <objc/objc-api.h>
#include <objc/Object.h>
#include <stdio.h>
abort();
return 0;
}
+
+
+#endif