* ada-lang.c (ada_convert_actual): Renames convert_actual.

Make non-static.
        (ada_convert_actuals): Delete.
        * ada-lang.h (ada_convert_actual): Add declaration.
        (ada_convert_actuals): Remove declaration.
        * infcall.c: #include "ada-lang.h".
        (value_arg_coerce): Add new parameter sp.  Update function
        documetnation.  Add handling of Ada function call parameters.
        * Makefile.in (infcall.o): Update dependencies.
This commit is contained in:
Joel Brobecker
2008-01-08 19:28:09 +00:00
parent 88e2547f13
commit a93c0eb695
5 changed files with 30 additions and 34 deletions

View File

@ -278,8 +278,9 @@ extern void ada_printchar (int, struct ui_file *);
extern void ada_printstr (struct ui_file *, const gdb_byte *,
unsigned int, int, int);
extern void ada_convert_actuals (struct value *, int, struct value **,
CORE_ADDR *);
struct value *ada_convert_actual (struct value *actual,
struct type *formal_type0,
CORE_ADDR *sp);
extern struct value *ada_value_subscript (struct value *, int,
struct value **);