]> git.saurik.com Git - apple/objc4.git/blobdiff - test/unwind.m
objc4-646.tar.gz
[apple/objc4.git] / test / unwind.m
index 32168802cda9c0a4d0e941db2f3e49f7b4787868..7fa11592261bd1d88c04c0eff6112a75c98de3fc 100644 (file)
@@ -56,10 +56,6 @@ static void handler(id unused __unused, void *ctx __unused)
 
 int main()
 {
-#if TARGET_IPHONE_SIMULATOR
-    testwarn("<rdar://problem/7965763> Simulator: cannot throw exceptions across objc_msgSend");
-    succeed(__FILE__);
-#else
     int i;
 
     // unwind exception and alt handler through objc_msgSend()
@@ -92,7 +88,6 @@ int main()
     } POP_POOL;
 
     succeed(__FILE__);
-#endif
 }
 
 #endif