diff options
Diffstat (limited to 'gcc/ada')
| -rw-r--r-- | gcc/ada/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/ada/utils.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index a0bdb47..740f535 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2003-06-14 Nathan Sidwell <nathan@codesourcery.com> + + * utils.c (begin_subprog_body): Adjust init_function_start call. + 2003-06-14 Neil Booth <neil@daikokuya.co.uk> * Make-lang.in: Update to use options.c and options.h. diff --git a/gcc/ada/utils.c b/gcc/ada/utils.c index a88c9a3..5eeca2b 100644 --- a/gcc/ada/utils.c +++ b/gcc/ada/utils.c @@ -1774,7 +1774,7 @@ begin_subprog_body (subprog_decl) /* Store back the PARM_DECL nodes. They appear in the right order. */ DECL_ARGUMENTS (subprog_decl) = getdecls (); - init_function_start (subprog_decl, input_filename, input_line); + init_function_start (subprog_decl); expand_function_start (subprog_decl, 0); /* If this function is `main', emit a call to `__main' |
