* MAINTAINERS: Note that cris-elf target can be compiled with
authorAndrew Cagney <cagney@redhat.com>
Tue, 18 Jun 2002 16:01:12 +0000 (16:01 +0000)
committerAndrew Cagney <cagney@redhat.com>
Tue, 18 Jun 2002 16:01:12 +0000 (16:01 +0000)
-Werror.
* cris-tdep.c (cris_register_name): Make return type constant.
(cris_breakpoint_from_pc): Ditto.

gdb/ChangeLog
gdb/MAINTAINERS
gdb/cris-tdep.c

index e84bb6fbc766cfc147e2d96cbf91022ac68ac491..4d97346e357e8e0a0a965b4bc7ad11679222838a 100644 (file)
@@ -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>
 
        * frame.h (struct frame_info): Change type of context to 
index f86c42c484fc1ad9ed51c20deb8a533793a4a188..aa7257c4bbb6e66ec5c2c73eff0d8e2e355cedd7 100644 (file)
@@ -72,7 +72,7 @@ maintainer works with the native maintainer when resolving API issues.
        avr             --target=avr ,-Werror
                        Theodore A. Roth        troth@verinet.com
 
-       cris            --target=cris-elf -w
+       cris            --target=cris-elf ,-Werror
                        Orjan Friberg           orjanf@axis.com
 
        d10v            --target=d10v-elf ,-Werror
index b28d3bb83f7234493d3456586ffadb3e3bd17009..b223f8734eeb8b04be52fa48958192f378fe70f6 100644 (file)
@@ -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[] =
This page took 0.042198 seconds and 4 git commands to generate.