| Index: gdb/mn10300-tdep.c
|
| diff --git a/gdb/mn10300-tdep.c b/gdb/mn10300-tdep.c
|
| index effeaabd4cb86ceda6e25b53b6bdf792fdc749ca..e2926133eda3de94312529c125c03fbdaff168f4 100644
|
| --- a/gdb/mn10300-tdep.c
|
| +++ b/gdb/mn10300-tdep.c
|
| @@ -233,7 +233,7 @@ mn10300_extract_return_value (struct gdbarch *gdbarch, struct type *type,
|
| from WRITEBUF into REGCACHE. */
|
|
|
| static enum return_value_convention
|
| -mn10300_return_value (struct gdbarch *gdbarch, struct type *func_type,
|
| +mn10300_return_value (struct gdbarch *gdbarch, struct value *function,
|
| struct type *type, struct regcache *regcache,
|
| gdb_byte *readbuf, const gdb_byte *writebuf)
|
| {
|
| @@ -387,7 +387,7 @@ mn10300_analyze_prologue (struct gdbarch *gdbarch,
|
| struct mn10300_prologue *result)
|
| {
|
| enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
| - CORE_ADDR pc, next_pc;
|
| + CORE_ADDR pc;
|
| int rn;
|
| pv_t regs[MN10300_MAX_NUM_REGS];
|
| struct pv_area *stack;
|
| @@ -1061,7 +1061,7 @@ mn10300_analyze_prologue (struct gdbarch *gdbarch,
|
| static CORE_ADDR
|
| mn10300_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
|
| {
|
| - char *name;
|
| + const char *name;
|
| CORE_ADDR func_addr, func_end;
|
| struct mn10300_prologue p;
|
|
|
|
|