diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2003-09-28 06:37:41 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-09-28 06:37:41 +0200 |
commit | edaf3e0357bbc16c01ff9f341016a1e6969a617d (patch) | |
tree | 2d57274d896402f7f0c0a9338f7d3dfc555c03af /gcc/c-decl.c | |
parent | 6fb708633d529fafe3626c2b1b4d39a9dffe36bd (diff) | |
download | gcc-edaf3e0357bbc16c01ff9f341016a1e6969a617d.zip gcc-edaf3e0357bbc16c01ff9f341016a1e6969a617d.tar.gz gcc-edaf3e0357bbc16c01ff9f341016a1e6969a617d.tar.bz2 |
c-decl.c (finish_function): Convert definition to ISO C90.
* c-decl.c (finish_function): Convert definition to ISO C90.
* ifcvt.c (mark_loop_exit_edges): Likewise.
* ra-rewrite.c (emit_colors): Likewise.
For cp:
* decl.c (cxx_builtin_type_decls): Convert to ISO C90 function
definition.
* init.c (push_base_cleanups): Likewise.
* decl2.c (finish_file): Likewise.
* mangle.c (init_mangle): Likewise.
(dump_substitution_candidates): Likewise.
* search.c: Likewise.
From-SVN: r71872
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index bb1c4b0..31cb223 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6018,7 +6018,7 @@ store_parm_decls (void) This is called after parsing the body of the function definition. */ void -finish_function () +finish_function (void) { tree fndecl = current_function_decl; |