mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-12 10:28:59 +08:00
* jv-exp.y (copy_exp, insert_exp): Avoid ANSI prototypes.
This commit is contained in:
@ -1,3 +1,20 @@
|
|||||||
|
Fri Nov 14 13:04:34 1997 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* jv-exp.y (copy_exp, insert_exp): Avoid ANSI prototypes.
|
||||||
|
|
||||||
|
Thu Nov 13 09:47:35 1997 Michael Meissner <meissner@cygnus.com>
|
||||||
|
|
||||||
|
* d30v-tdep.c (d30v_print_flags): Function to print the d30v flags
|
||||||
|
in a human readable format.
|
||||||
|
(print_flags_command): Command wrapper to call d30v_print_flags.
|
||||||
|
(d30v_do_registers_info): When printing out all of the registers,
|
||||||
|
print out the flag values in a human readable fashion.
|
||||||
|
(_initialize_d30v_tdep): Add info flags command to print the
|
||||||
|
flags.
|
||||||
|
|
||||||
|
* config/d30v/tm-d30v.h (PSW_*): Add macros for each of the PSW
|
||||||
|
bits that are defined.
|
||||||
|
|
||||||
Mon Nov 10 15:13:13 1997 Ian Lance Taylor <ian@cygnus.com>
|
Mon Nov 10 15:13:13 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* valprint.c (print_longest): The b, h, w, and g format specifiers
|
* valprint.c (print_longest): The b, h, w, and g format specifiers
|
||||||
|
@ -1406,7 +1406,9 @@ push_expression_name (name)
|
|||||||
into a freshly malloc'ed struct expression. Its language_defn is set
|
into a freshly malloc'ed struct expression. Its language_defn is set
|
||||||
to null. */
|
to null. */
|
||||||
static struct expression *
|
static struct expression *
|
||||||
copy_exp (struct expression *expr, int endpos)
|
copy_exp (expr, endpos)
|
||||||
|
struct expression *expr;
|
||||||
|
int endpos;
|
||||||
{
|
{
|
||||||
int len = length_of_subexp (expr, endpos);
|
int len = length_of_subexp (expr, endpos);
|
||||||
struct expression *new
|
struct expression *new
|
||||||
@ -1420,8 +1422,9 @@ copy_exp (struct expression *expr, int endpos)
|
|||||||
|
|
||||||
/* Insert the expression NEW into the current expression (expout) at POS. */
|
/* Insert the expression NEW into the current expression (expout) at POS. */
|
||||||
static void
|
static void
|
||||||
insert_exp (int pos,
|
insert_exp (pos, new)
|
||||||
struct expression *new)
|
int pos;
|
||||||
|
struct expression *new;
|
||||||
{
|
{
|
||||||
int newlen = new->nelts;
|
int newlen = new->nelts;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user