mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
From Brad Lucier <lucier@math.purdue.edu>:
* dwarf2dbg.c (print_stats): Add cast to force printf argument to match format.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2000-02-22 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
|
From Brad Lucier <lucier@math.purdue.edu>:
|
||||||
|
* dwarf2dbg.c (print_stats): Add cast to force printf argument to
|
||||||
|
match format.
|
||||||
|
|
||||||
2000-02-21 Catherine Moore <clm@cygnus.com>
|
2000-02-21 Catherine Moore <clm@cygnus.com>
|
||||||
|
|
||||||
* config/tc-mips.c (MF_HILO_INSN): Define.
|
* config/tc-mips.c (MF_HILO_INSN): Define.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* dwarf2dbg.c - DWARF2 debug support
|
/* dwarf2dbg.c - DWARF2 debug support
|
||||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
|
||||||
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
||||||
|
|
||||||
This file is part of GAS, the GNU Assembler.
|
This file is part of GAS, the GNU Assembler.
|
||||||
@ -639,7 +639,8 @@ print_stats (total_size)
|
|||||||
j = SPECIAL_LINE (i);
|
j = SPECIAL_LINE (i);
|
||||||
if (j == DWARF2_LINE_BASE)
|
if (j == DWARF2_LINE_BASE)
|
||||||
fprintf (stderr, "\n%4u: ",
|
fprintf (stderr, "\n%4u: ",
|
||||||
DWARF2_LINE_MIN_INSN_LENGTH*SPECIAL_ADDR (i));
|
((unsigned int)
|
||||||
|
DWARF2_LINE_MIN_INSN_LENGTH * SPECIAL_ADDR (i)));
|
||||||
fprintf (stderr, " %2u", ls.opcode_hist[i]);
|
fprintf (stderr, " %2u", ls.opcode_hist[i]);
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
|
Reference in New Issue
Block a user