Fix compile time warning in bfd/coff-tic4x.c
Nick Clifton
nickc@redhat.com
Fri Feb 11 18:45:00 GMT 2005
More information about the Binutils mailing list
Fri Feb 11 18:45:00 GMT 2005
- Previous message (by thread): Testsuite fix
- Next message (by thread): Fix compile time warning in bfd/coffcode.h
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi Guys, I am applying the patch below to fix a compile time warning building bfd/coff-tic4x.c. This was actually a case where the warning proved to be useful - there was an underlying bug that it picked up. Cheers Nick bfd/ChangeLog 2005-02-11 Nick Clifton <nickc@redhat.com> * coff-tic4x.c (coff_rtype_to_howto): Move definition before inclusion of coffcode.h so that it is actually picked up. Index: bfd/coff-tic4x.c =================================================================== RCS file: /cvs/src/src/bfd/coff-tic4x.c,v retrieving revision 1.8 diff -c -3 -p -r1.8 coff-tic4x.c *** bfd/coff-tic4x.c 4 Jun 2003 11:38:30 -0000 1.8 --- bfd/coff-tic4x.c 11 Feb 2005 17:02:41 -0000 *************** ticoff_bfd_is_local_label_name (abfd, na *** 68,73 **** --- 68,77 ---- The COFF1 and COFF0 vectors use custom _bad_format_hook procs instead of setting BADMAG. */ #define BADMAG(x) COFF2_BADMAG(x) + + #undef coff_rtype_to_howto + #define coff_rtype_to_howto coff_tic4x_rtype_to_howto + #include "coffcode.h" static bfd_reloc_status_type *************** tic4x_lookup_howto (internal, dst) *** 172,180 **** abort(); } - #undef coff_rtype_to_howto - #define coff_rtype_to_howto coff_tic4x_rtype_to_howto - static reloc_howto_type * coff_tic4x_rtype_to_howto (abfd, sec, rel, h, sym, addendp) bfd *abfd ATTRIBUTE_UNUSED; --- 176,181 ----
- Previous message (by thread): Testsuite fix
- Next message (by thread): Fix compile time warning in bfd/coffcode.h
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list