* gdbtypes.c (check_stub_type): Removed; no longes needed.
* ch-exp.c (expect, parse_call): Tweak error messages.
This commit is contained in:
parent
b10f8e5e5c
commit
c8b2ba5d48
@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 30 23:54:17 1995 Per Bothner <bothner@kalessin.cygnus.com>
|
||||||
|
|
||||||
|
* gdbtypes.c (check_stub_type): Removed; no longes needed.
|
||||||
|
* ch-exp.c (expect, parse_call): Tweak error messages.
|
||||||
|
|
||||||
Wed Nov 29 13:35:18 1995 Per Bothner <bothner@kalessin.cygnus.com>
|
Wed Nov 29 13:35:18 1995 Per Bothner <bothner@kalessin.cygnus.com>
|
||||||
|
|
||||||
* scm-valprint.c (scm_isymnames): Remove "#@" prefix.
|
* scm-valprint.c (scm_isymnames): Remove "#@" prefix.
|
||||||
|
@ -253,7 +253,7 @@ expect(token, message)
|
|||||||
if (message)
|
if (message)
|
||||||
error (message);
|
error (message);
|
||||||
else if (token < 256)
|
else if (token < 256)
|
||||||
error ("syntax error - expected a '%c' here '%s'", token, lexptr);
|
error ("syntax error - expected a '%c' here \"%s\"", token, lexptr);
|
||||||
else
|
else
|
||||||
error ("syntax error");
|
error ("syntax error");
|
||||||
return 0;
|
return 0;
|
||||||
@ -478,7 +478,7 @@ parse_call ()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
arglist_len = 0;
|
arglist_len = 0;
|
||||||
expect (')', "expected ')' here");
|
expect (')', NULL);
|
||||||
arg_count = end_arglist ();
|
arg_count = end_arglist ();
|
||||||
write_exp_elt_opcode (MULTI_SUBSCRIPT);
|
write_exp_elt_opcode (MULTI_SUBSCRIPT);
|
||||||
write_exp_elt_longcst (arg_count);
|
write_exp_elt_longcst (arg_count);
|
||||||
|
@ -864,13 +864,6 @@ fill_in_vptr_fieldno (type)
|
|||||||
struct complaint stub_noname_complaint =
|
struct complaint stub_noname_complaint =
|
||||||
{"stub type has NULL name", 0, 0};
|
{"stub type has NULL name", 0, 0};
|
||||||
|
|
||||||
void
|
|
||||||
check_stub_type (type)
|
|
||||||
struct type *type;
|
|
||||||
{
|
|
||||||
check_typedef (type);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct type *
|
struct type *
|
||||||
check_typedef (type)
|
check_typedef (type)
|
||||||
register struct type *type;
|
register struct type *type;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user