* valops.c (value_arg_coerce): Fix formatting.

This commit is contained in:
Mark Kettenis 2002-01-06 22:09:08 +00:00
parent aef21287e3
commit 290b2c7ad8
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-01-06 Mark Kettenis <kettenis@gnu.org>
* valops.c (value_arg_coerce): Fix formatting.
2002-01-06 Andrew Cagney <ac131313@redhat.com>
* hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.

View File

@ -1142,11 +1142,12 @@ standard_coerce_float_to_double (struct type *formal, struct type *actual)
IS_PROTOTYPED is non-zero if the function declaration is prototyped. */
static struct value *
value_arg_coerce (struct value *arg, struct type *param_type, int is_prototyped)
value_arg_coerce (struct value *arg, struct type *param_type,
int is_prototyped)
{
register struct type *arg_type = check_typedef (VALUE_TYPE (arg));
register struct type *type
= param_type ? check_typedef (param_type) : arg_type;
= param_type ? check_typedef (param_type) : arg_type;
switch (TYPE_CODE (type))
{