diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-11-26 19:40:21 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2001-11-26 19:40:21 +0000 |
commit | 8924f58b428e3afc19a4deb566a8a6501646687b (patch) | |
tree | 61a45f935f84b20348ef0114d17ea950613ba118 /gcc | |
parent | afb14002b67f274198a8e59261e59a3aade279ac (diff) | |
download | gcc-8924f58b428e3afc19a4deb566a8a6501646687b.zip gcc-8924f58b428e3afc19a4deb566a8a6501646687b.tar.gz gcc-8924f58b428e3afc19a4deb566a8a6501646687b.tar.bz2 |
toplev.c (process_options): Don't force flag_optimize_sibling_calls to zero just because exceptions are enabled.
* toplev.c (process_options): Don't force
flag_optimize_sibling_calls to zero just because exceptions are
enabled.
From-SVN: r47351
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/toplev.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 27f4515..5f3ea3a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-11-26 Alexandre Oliva <aoliva@redhat.com> + + * toplev.c (process_options): Don't force + flag_optimize_sibling_calls to zero just because exceptions are + enabled. + Mon Nov 26 12:37:05 2001 Jeffrey A Law (law@cygnus.com) * df.h (transfer_function_sbitmap): Use PARAMS around argument diff --git a/gcc/toplev.c b/gcc/toplev.c index bb7eedf..7ee39cb 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4813,12 +4813,6 @@ process_options () warning ("-Wuninitialized is not supported without -O"); } - /* We do not currently support sibling-call optimization in the - presence of exceptions. See PR2975 for a test-case that will - fail if we try to combine both of these features. */ - if (flag_exceptions) - flag_optimize_sibling_calls = 0; - #ifdef OVERRIDE_OPTIONS /* Some machines may reject certain combinations of options. */ OVERRIDE_OPTIONS; |