diff options
author | Jason Merrill <jason@yorick.cygnus.com> | 1999-08-13 08:23:35 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1999-08-13 04:23:35 -0400 |
commit | 6e487a4947ce340c7c9185da08d9a99c8df79e72 (patch) | |
tree | 5697811a094582862b021562eabe840179cd1348 | |
parent | 63a51aaa2c9315a3b769d12a9fdd0d5fa6d4fbbd (diff) | |
download | gcc-6e487a4947ce340c7c9185da08d9a99c8df79e72.zip gcc-6e487a4947ce340c7c9185da08d9a99c8df79e72.tar.gz gcc-6e487a4947ce340c7c9185da08d9a99c8df79e72.tar.bz2 |
* toplev.c (flag_new_exceptions): On by default.
From-SVN: r28703
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/toplev.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d62c86e..5306750 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Fri Aug 13 00:49:46 1999 Jason Merrill <jason@yorick.cygnus.com> + + * toplev.c (flag_new_exceptions): On by default. + 1999-08-13 Michael Meissner <meissner@cygnus.com> * Makefile.in (GCC_FOR_TARGET): Move -B./ after the tooldir -B. diff --git a/gcc/toplev.c b/gcc/toplev.c index 5c7041e..a3cc6b5 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -648,7 +648,7 @@ int flag_exceptions; /* Nonzero means use the new model for exception handling. Replaces -DNEW_EH_MODEL as a compile option. */ -int flag_new_exceptions = 0; +int flag_new_exceptions = 1; /* Nonzero means don't place uninitialized global data in common storage by default. */ |