* 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.
This commit is contained in:
parent
dc9feb5c97
commit
5402eed1c4
3 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2002-06-18 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
2002-06-18 Michal Ludvig <mludvig@suse.cz>
|
2002-06-18 Michal Ludvig <mludvig@suse.cz>
|
||||||
|
|
||||||
* frame.h (struct frame_info): Change type of context to
|
* frame.h (struct frame_info): Change type of context to
|
||||||
|
|
|
@ -72,7 +72,7 @@ maintainer works with the native maintainer when resolving API issues.
|
||||||
avr --target=avr ,-Werror
|
avr --target=avr ,-Werror
|
||||||
Theodore A. Roth troth@verinet.com
|
Theodore A. Roth troth@verinet.com
|
||||||
|
|
||||||
cris --target=cris-elf -w
|
cris --target=cris-elf ,-Werror
|
||||||
Orjan Friberg orjanf@axis.com
|
Orjan Friberg orjanf@axis.com
|
||||||
|
|
||||||
d10v --target=d10v-elf ,-Werror
|
d10v --target=d10v-elf ,-Werror
|
||||||
|
|
|
@ -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
|
adjusts pcptr (if necessary) to point to the actual memory location where
|
||||||
the breakpoint should be inserted. */
|
the breakpoint should be inserted. */
|
||||||
|
|
||||||
unsigned char *
|
const unsigned char *
|
||||||
cris_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
|
cris_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
|
||||||
{
|
{
|
||||||
static unsigned char break_insn[] = {0x38, 0xe9};
|
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
|
/* Return the name of register regno as a string. Return NULL for an invalid or
|
||||||
unimplemented register. */
|
unimplemented register. */
|
||||||
|
|
||||||
char *
|
const char *
|
||||||
cris_register_name (int regno)
|
cris_register_name (int regno)
|
||||||
{
|
{
|
||||||
static char *cris_genreg_names[] =
|
static char *cris_genreg_names[] =
|
||||||
|
|
Loading…
Add table
Reference in a new issue