* mn10300-tdep.c (mn10300_gdbarch_init): For mn10300, by default,

`char' is unsigned.
This commit is contained in:
Kevin Buettner 2009-03-28 04:56:42 +00:00
parent f91d3df5c6
commit 1b31f75d63
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2009-03-28 Kevin Buettner <kevinb@redhat.com>
* mn10300-tdep.c (mn10300_gdbarch_init): For mn10300, by default,
`char' is unsigned.
2009-03-28 Pedro Alves <pedro@codesourcery.com>
* remote.c (remote_stop_ns): If multi-process extensions are off,

View file

@ -1413,6 +1413,9 @@ mn10300_gdbarch_init (struct gdbarch_info info,
break;
}
/* By default, chars are unsigned. */
set_gdbarch_char_signed (gdbarch, 0);
/* Registers. */
set_gdbarch_num_regs (gdbarch, num_regs);
set_gdbarch_register_type (gdbarch, mn10300_register_type);