This is the mail archive of the
binutils@sources.redhat.com
mailing list for the binutils project.
Fix compile time warning in bfd/coff-tic4x.c
- From: Nick Clifton <nickc at redhat dot com>
- To: binutils at sources dot redhat dot com
- Date: Fri, 11 Feb 2005 17:15:53 +0000
- Subject: Fix compile time warning in bfd/coff-tic4x.c
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 ----