From 84fd360ddcdabfe1209c0139aa937e9e0ee7547a Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Tue, 26 Jul 2005 14:27:33 +0000 Subject: [PATCH] re PR libobjc/22606 (Exceptions cannot be thrown from -forward::) 2005-07-26 Andrew Pinski PR libobjc/22606 * Makefile.in (ALL_CFLAGS): Add -fexceptions. 2005-07-26 Andrew Pinski PR libobjc/22606 * objc.dg/try-catch-11.m: New test. From-SVN: r102386 --- gcc/testsuite/ChangeLog | 5 ++++ gcc/testsuite/objc.dg/try-catch-11.m | 42 ++++++++++++++++++++++++++++ libobjc/ChangeLog | 5 ++++ libobjc/Makefile.in | 2 +- 4 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 gcc/testsuite/objc.dg/try-catch-11.m diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 693ddc9725e6..c4df73c93069 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-07-26 Andrew Pinski + + PR libobjc/22606 + * objc.dg/try-catch-11.m: New test. + 2005-07-26 Richard Guenther PR tree-optimization/22486 diff --git a/gcc/testsuite/objc.dg/try-catch-11.m b/gcc/testsuite/objc.dg/try-catch-11.m new file mode 100644 index 000000000000..745deca7c1d0 --- /dev/null +++ b/gcc/testsuite/objc.dg/try-catch-11.m @@ -0,0 +1,42 @@ +/* Check that throwing an exception from a -forward:: works. */ +/* Developed by Marcin Koziej . */ + +/* { dg-do run } */ +/* { dg-options "-fobjc-exceptions -w" } */ + +#import +#import +#include + +static int i; + +@interface Thrower : Object +- forward: (SEL) s : (void*) a; +@end + +@implementation Thrower +- forward: (SEL) s : (void*) a +{ + i++; + @throw [Object new]; +} +@end +int +main() +{ + id t = [Thrower new]; + @try + { + [t doesnotexist]; + } + @catch (id error) + { + i++; + [error free]; + } + + if (i != 2) + abort (); + + return 0; +} \ No newline at end of file diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 0fa3b08f16f3..4456989fafd2 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2005-07-26 Andrew Pinski + + PR libobjc/22606 + * Makefile.in (ALL_CFLAGS): Add -fexceptions. + 2005-06-08 David Ayers * objc/NXConstStr.h, objc/Object.h, objc/Protocol.h, diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index 44e3dd71f951..4dd1f9d3f5e5 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -73,7 +73,7 @@ CC = @CC@ CFLAGS = @CFLAGS@ WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \ - -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing + -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions # Libtool # The following strings describe the version of the obj-C library