diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-06-18 16:01:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-06-18 16:01:12 +0000 |
commit | 5402eed1c4143564801a79e25c6e9147e63e09cf (patch) | |
tree | 7777e1065812aaaa27486903444c7c55b0893b3d /gdb/cris-tdep.c | |
parent | dc9feb5c97ab95cb328406040f47f20f986f0e58 (diff) | |
download | gdb-5402eed1c4143564801a79e25c6e9147e63e09cf.zip gdb-5402eed1c4143564801a79e25c6e9147e63e09cf.tar.gz gdb-5402eed1c4143564801a79e25c6e9147e63e09cf.tar.bz2 |
* MAINTAINERS: Note that cris-elf target can be compiled with
-Werror.
* cris-tdep.c (cris_register_name): Make return type constant.
(cris_breakpoint_from_pc): Ditto.
Diffstat (limited to 'gdb/cris-tdep.c')
-rw-r--r-- | gdb/cris-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cris-tdep.c b/gdb/cris-tdep.c index b28d3bb..b223f87 100644 --- a/gdb/cris-tdep.c +++ b/gdb/cris-tdep.c @@ -762,7 +762,7 @@ cris_skip_prologue_main (CORE_ADDR pc, int frameless_p) adjusts pcptr (if necessary) to point to the actual memory location where the breakpoint should be inserted. */ -unsigned char * +const unsigned char * cris_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr) { static unsigned char break_insn[] = {0x38, 0xe9}; @@ -995,7 +995,7 @@ cris_abi_v2_store_return_value (struct type *type, char *valbuf) /* Return the name of register regno as a string. Return NULL for an invalid or unimplemented register. */ -char * +const char * cris_register_name (int regno) { static char *cris_genreg_names[] = |