diff options
author | Richard Henderson <rth@redhat.com> | 2004-10-20 18:00:16 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-10-20 18:00:16 -0700 |
commit | 0aab7a4b725f565fcd1dbc85c798a2dc88914c2c (patch) | |
tree | e415ec516ab0f73d09567c141a3e898398407e90 | |
parent | 4ba4c213cc5588f1261d335e4efe16915ccad116 (diff) | |
download | gcc-0aab7a4b725f565fcd1dbc85c798a2dc88914c2c.zip gcc-0aab7a4b725f565fcd1dbc85c798a2dc88914c2c.tar.gz gcc-0aab7a4b725f565fcd1dbc85c798a2dc88914c2c.tar.bz2 |
cleanup-10.c, [...]: Use -fnon-call-exceptions, not -fasynchronous-unwind-tables.
* gcc.dg/cleanup-10.c, gcc.dg/cleanup-11.c, gcc.dg/cleanup-8.c,
gcc.dg/cleanup-9.c: Use -fnon-call-exceptions, not
-fasynchronous-unwind-tables.
From-SVN: r89359
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cleanup-10.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cleanup-11.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cleanup-8.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cleanup-9.c | 2 |
5 files changed, 10 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 16493f2..36186a4 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,11 @@ 2004-10-20 Richard Henderson <rth@redhat.com> + * gcc.dg/cleanup-10.c, gcc.dg/cleanup-11.c, gcc.dg/cleanup-8.c, + gcc.dg/cleanup-9.c: Use -fnon-call-exceptions, not + -fasynchronous-unwind-tables. + +2004-10-20 Richard Henderson <rth@redhat.com> + * gcc.c-torture/unsorted/call386.c (foo): Fix return type. (main): Return success. * gcc.c-torture/unsorted/subcc.c (foo, bar): Fix return types. diff --git a/gcc/testsuite/gcc.dg/cleanup-10.c b/gcc/testsuite/gcc.dg/cleanup-10.c index 76470e6..35936ea 100644 --- a/gcc/testsuite/gcc.dg/cleanup-10.c +++ b/gcc/testsuite/gcc.dg/cleanup-10.c @@ -1,5 +1,5 @@ /* { dg-do run { target *-*-linux* powerpc*-*-darwin* } } */ -/* { dg-options "-fasynchronous-unwind-tables -fexceptions -O2" } */ +/* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */ /* Verify that cleanups work with exception handling through signal frames on alternate stack. */ diff --git a/gcc/testsuite/gcc.dg/cleanup-11.c b/gcc/testsuite/gcc.dg/cleanup-11.c index 4ad131f..447b398 100644 --- a/gcc/testsuite/gcc.dg/cleanup-11.c +++ b/gcc/testsuite/gcc.dg/cleanup-11.c @@ -1,5 +1,5 @@ /* { dg-do run { target *-*-linux* powerpc*-*-darwin* } } */ -/* { dg-options "-fasynchronous-unwind-tables -fexceptions -O2" } */ +/* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */ /* Verify that cleanups work with exception handling through realtime signal frames on alternate stack. */ diff --git a/gcc/testsuite/gcc.dg/cleanup-8.c b/gcc/testsuite/gcc.dg/cleanup-8.c index b802d25..25bc305 100644 --- a/gcc/testsuite/gcc.dg/cleanup-8.c +++ b/gcc/testsuite/gcc.dg/cleanup-8.c @@ -1,5 +1,5 @@ /* { dg-do run { target *-*-linux* powerpc*-*-darwin* } } */ -/* { dg-options "-fasynchronous-unwind-tables -fexceptions -O2" } */ +/* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */ /* Verify that cleanups work with exception handling through signal frames. */ diff --git a/gcc/testsuite/gcc.dg/cleanup-9.c b/gcc/testsuite/gcc.dg/cleanup-9.c index 2381e95..4cf4a41 100644 --- a/gcc/testsuite/gcc.dg/cleanup-9.c +++ b/gcc/testsuite/gcc.dg/cleanup-9.c @@ -1,5 +1,5 @@ /* { dg-do run { target *-*-linux* powerpc*-*-darwin* } } */ -/* { dg-options "-fasynchronous-unwind-tables -fexceptions -O2" } */ +/* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */ /* Verify that cleanups work with exception handling through realtime signal frames. */ |