diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-03-08 21:12:26 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-03-08 21:12:26 +0000 |
commit | 4bfec48308a39e8ba1af2ebca9cbcddfac231b22 (patch) | |
tree | 6dbda9aef13aa04d7c15b46cb0bda16747482b8d /gcc/objc | |
parent | 9dd04ab53c8790dcb12aa7d4a0396a5ca58432da (diff) | |
download | gcc-4bfec48308a39e8ba1af2ebca9cbcddfac231b22.tar.gz |
c-common.h (c_common_init, [...]): Update.
* c-common.h (c_common_init, c_common_post_options): Update.
* c-objc-common.c (c_objc_common_init): Update for new prototype.
* c-opts.c (saved_lineno): New.
(c_common_post_options, c_common_init): Update prototypes,
move call to cpp_read_main_file from latter to former.
* c-tree.h (c_ojbc_common_init): Update.
* langhooks-def.h (lhd_post_options): New.
(LANG_HOOKS_INIT, LANG_HOOKS_POST_OPTIONS): Update.
* langhooks.c (lhd_post_options): New.
* langhooks.h (struct lang_hooks): Update post_options and init hooks.
* toplev.c (no_backend): New.
(process_options): Call post_options hook and set main_input_filename
and input_filename here.
(lang_dependent_init, do_compile): post_options hook moved to
process_options.
* objc/objc-act.c (objc_init): Update prototype.
* objc/objc-act.h (objc_init): Update prototype.
ada:
* misc.c (gnat_init): Update for new prototype.
cp:
* cp-tree.h (cxx_init): Update prototype.
* lex.c (cxx_init): Similarly.
f:
* com.c (ffe_init): Update prototype; move code to ffe_post_options.
(ffe_post_options): New.
java:
* lang.c (java_init): Update prototype, move code to java_post_options.
(java_post_options): Similarly.
treelang:
* tree1.c (in_fname): Fix type.
(treelang_init): Update prototype and use of in_fname.
* treelang.h (in_fname): Fix type.
* treetree.c (tree_code_if_start, tree_code_if_else,
tree_code_if_end, tree_code_create_function_prototype,
tree_code_create_function_initial, tree_code_create_funciton_wrapup,
tree_code_create_variable, tree_code_output_expression_statement)
: Fix prototypes and use of filenames.
* treetree.h: Similarly.
From-SVN: r64001
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 12 | ||||
-rw-r--r-- | gcc/objc/objc-act.h | 2 |
2 files changed, 6 insertions, 8 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index c55f2505796..c23c6225787 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -432,13 +432,11 @@ generate_struct_by_value_array () exit (0); } -const char * -objc_init (filename) - const char *filename; +bool +objc_init () { - filename = c_objc_common_init (filename); - if (filename == NULL) - return filename; + if (c_objc_common_init () == false) + return false; /* Force the line number back to 0; check_newline will have raised it to 1, which will make the builtin functions appear @@ -482,7 +480,7 @@ objc_init (filename) if (print_struct_values) generate_struct_by_value_array (); - return filename; + return true; } void diff --git a/gcc/objc/objc-act.h b/gcc/objc/objc-act.h index c03e55a64ab..c06c2b8c271 100644 --- a/gcc/objc/objc-act.h +++ b/gcc/objc/objc-act.h @@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */ /*** Public Interface (procedures) ***/ -const char *objc_init PARAMS ((const char *)); +bool objc_init PARAMS ((void)); const char *objc_printable_name PARAMS ((tree, int)); /* used by yyparse */ |