mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-14 11:25:52 +08:00
fix compile time warnings
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
1999-10-27 Scott Bambrough <scottb@netwinder.org>
|
||||
|
||||
* config/tc-arm.c (reloc_map[]): Fix compiler warning.
|
||||
* config/tc-arm.h: Fix compile time warnings.
|
||||
|
||||
Mon Oct 18 18:11:10 MDT 1999 Diego Novillo <dnovillo@cygnus.com>
|
||||
|
||||
* tc_d10v.c (find_opcode): Allow ATSIGN to match expressions of the
|
||||
|
@ -6984,7 +6984,7 @@ arm_parse_reloc ()
|
||||
/* Added support for parsing "var(PLT)" branch instructions */
|
||||
/* generated by GCC for PLT relocs */
|
||||
MAP ("(plt)", BFD_RELOC_ARM_PLT32),
|
||||
NULL, 0, BFD_RELOC_UNUSED
|
||||
{ NULL, 0, BFD_RELOC_UNUSED }
|
||||
#undef MAP
|
||||
};
|
||||
|
||||
|
@ -113,8 +113,13 @@
|
||||
deliberately not been updated to mark assembler created stabs
|
||||
symbols as Thumb. */
|
||||
|
||||
#define TC_FIX_TYPE PTR
|
||||
#define TC_INIT_FIX_DATA(FIXP) ((FIXP)->tc_fix_data = NULL)
|
||||
|
||||
#ifdef OBJ_ELF
|
||||
#include "write.h" /* For definition of fixS */
|
||||
#define obj_fix_adjustable(fixP) arm_fix_adjustable (fixP)
|
||||
boolean arm_fix_adjustable PARAMS ((fixS *));
|
||||
#else
|
||||
#define obj_fix_adjustable(fixP) 0
|
||||
#endif
|
||||
@ -139,9 +144,6 @@
|
||||
#define THUMB_SET_FUNC(s,t) ((t) ? ARM_SET_FLAG (s, THUMB_FLAG_FUNC) : ARM_RESET_FLAG (s, THUMB_FLAG_FUNC))
|
||||
|
||||
|
||||
#define TC_FIX_TYPE PTR
|
||||
#define TC_INIT_FIX_DATA(FIXP) ((FIXP)->tc_fix_data = NULL)
|
||||
|
||||
#define TC_START_LABEL(C,STR) \
|
||||
(c == ':' || (c == '/' && arm_data_in_code ()))
|
||||
int arm_data_in_code PARAMS ((void));
|
||||
@ -154,7 +156,8 @@ char * arm_canonicalize_symbol_name PARAMS ((char *));
|
||||
extern void arm_adjust_symtab PARAMS ((void));
|
||||
|
||||
#ifdef OBJ_ELF
|
||||
#define obj_frob_symbol(sym, punt) armelf_frob_symbol (sym, punt)
|
||||
#define obj_frob_symbol(sym, punt) armelf_frob_symbol ((sym), & (punt))
|
||||
void armelf_frob_symbol PARAMS ((symbolS *, int *));
|
||||
#endif
|
||||
|
||||
#define tc_aout_pre_write_hook(x) {;} /* not used */
|
||||
|
@ -1,3 +1,8 @@
|
||||
1999-10-27 Scott Bambrough <scottb@netwinder.org>
|
||||
|
||||
* emultempl/armelf.em: Include ctype.h to prevent compile time
|
||||
warnings.
|
||||
|
||||
1999-10-26 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* emultempl/armcoff.em (gld{}_finish): Remove extraneous
|
||||
|
@ -28,6 +28,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
|
||||
#include "bfd.h"
|
||||
#include "sysdep.h"
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
#include "bfdlink.h"
|
||||
#include "getopt.h"
|
||||
|
||||
|
Reference in New Issue
Block a user