diff options
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/coff/ChangeLog | 4 | ||||
-rw-r--r-- | include/coff/xcoff.h | 4 | ||||
-rw-r--r-- | include/xtensa-isa-internal.h | 4 | ||||
-rw-r--r-- | include/xtensa-isa.h | 8 |
5 files changed, 18 insertions, 8 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2d85bd3..90e1d6f 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +2005-02-21 Alan Modra <amodra@bigpond.net.au> + + * xtensa-isa-internal.h (xtensa_length_decode_fn): Warning fix. + * xtensa-isa.h (xtensa_insnbuf_to_chars): Likewise. + (xtensa_insnbuf_from_chars, xtensa_isa_length_from_chars): Likewise. + 2005-02-14 Paolo Bonzini <bonzini@gnu.org> PR bootstrap/19818 diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog index 3d2c66d..88cf310 100644 --- a/include/coff/ChangeLog +++ b/include/coff/ChangeLog @@ -1,3 +1,7 @@ +2005-02-21 Alan Modra <amodra@bigpond.net.au> + + * xcoff.h (struct xcoff_loader_info): Warning fix. + 2005-01-10 Inderpreet Singh <inderpreetb@noida.hcltech.com> * maxq.h (F_MAXQ10, F_MAXQ20): Define. diff --git a/include/coff/xcoff.h b/include/coff/xcoff.h index 64a9ee1..a70449e 100644 --- a/include/coff/xcoff.h +++ b/include/coff/xcoff.h @@ -1,6 +1,6 @@ /* Internal format of XCOFF object file data structures for BFD. - Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 + Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc. Written by Ian Lance Taylor <ian@cygnus.com>, Cygnus Support. @@ -409,7 +409,7 @@ struct xcoff_loader_info size_t string_size; /* String table. */ - bfd_byte *strings; + char *strings; /* Allocated size of string table. */ size_t string_alc; diff --git a/include/xtensa-isa-internal.h b/include/xtensa-isa-internal.h index 44e53f9..7ec2b9e 100644 --- a/include/xtensa-isa-internal.h +++ b/include/xtensa-isa-internal.h @@ -1,5 +1,5 @@ /* Internal definitions for configurable Xtensa ISA support. - Copyright 2003, 2004 Free Software Foundation, Inc. + Copyright 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -49,7 +49,7 @@ typedef int (*xtensa_do_reloc_fn) (uint32 *, uint32); typedef int (*xtensa_undo_reloc_fn) (uint32 *, uint32); typedef void (*xtensa_opcode_encode_fn) (xtensa_insnbuf); typedef int (*xtensa_format_decode_fn) (const xtensa_insnbuf); -typedef int (*xtensa_length_decode_fn) (const char *); +typedef int (*xtensa_length_decode_fn) (const unsigned char *); typedef struct xtensa_format_internal_struct { diff --git a/include/xtensa-isa.h b/include/xtensa-isa.h index 025e317..5c22902 100644 --- a/include/xtensa-isa.h +++ b/include/xtensa-isa.h @@ -1,5 +1,5 @@ /* Interface definition for configurable Xtensa ISA support. - Copyright 2003, 2004 Free Software Foundation, Inc. + Copyright 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -209,11 +209,11 @@ xtensa_insnbuf_free (xtensa_isa isa, xtensa_insnbuf buf); extern int xtensa_insnbuf_to_chars (xtensa_isa isa, const xtensa_insnbuf insn, - char *cp, int num_chars); + unsigned char *cp, int num_chars); extern void xtensa_insnbuf_from_chars (xtensa_isa isa, xtensa_insnbuf insn, - const char *cp, int num_chars); + const unsigned char *cp, int num_chars); /* ISA information. */ @@ -242,7 +242,7 @@ xtensa_isa_maxlength (xtensa_isa isa); XTENSA_UNDEFINED on error. */ extern int -xtensa_isa_length_from_chars (xtensa_isa isa, const char *cp); +xtensa_isa_length_from_chars (xtensa_isa isa, const unsigned char *cp); /* Get the number of stages in the processor's pipeline. The pipeline |