diff options
author | Richard Henderson <rth@cygnus.com> | 1998-06-07 07:06:47 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-06-07 07:06:47 -0700 |
commit | b53beeb2916a20b2e96f71510dc1232592a4271f (patch) | |
tree | e1af6b194df0278f71aa8c64fb8d02ade641e69d /gcc/tree.h | |
parent | 874503bcad9c38fb673b43bcdc09e6d4658fe62a (diff) | |
download | gcc-b53beeb2916a20b2e96f71510dc1232592a4271f.zip gcc-b53beeb2916a20b2e96f71510dc1232592a4271f.tar.gz gcc-b53beeb2916a20b2e96f71510dc1232592a4271f.tar.bz2 |
toplev.c (flag_exceptions): Default to 0.
* toplev.c (flag_exceptions): Default to 0.
(compile_file): Remove flag_exceptions == 2 hack.
(main): Call lang_init_options.
* tree.h: Declare it.
* c-lang.c: Implement it.
* objc/objc-act.c: Likewise.
From-SVN: r20274
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1942,6 +1942,9 @@ extern void dwarf2out_end_epilogue PROTO((void)); /* The language front-end must define these functions. */ +/* Function of no arguments for initializing options. */ +extern void lang_init_options PROTO((void)); + /* Function of no arguments for initializing lexical scanning. */ extern void init_lex PROTO((void)); /* Function of no arguments for initializing the symbol table. */ |