* config/tc-s390.c (s390_force_relocation): Removed.

* config/tc-s390.h: Remove double declaration of
	TC_FORCE_RELOCATION.
This commit is contained in:
Andreas Jaeger 2001-07-23 10:21:22 +00:00
parent e14ec88b39
commit c745b67a33
3 changed files with 9 additions and 17 deletions

View file

@ -1,3 +1,10 @@
2001-07-23 Andreas Jaeger <aj@suse.de>
* config/tc-s390.c (s390_force_relocation): Removed.
* config/tc-s390.h: Remove double declaration of
TC_FORCE_RELOCATION.
2001-07-22 H.J. Lu <hjl@gnu.org> 2001-07-22 H.J. Lu <hjl@gnu.org>
* config/tc-mips.c (s_mips_end): Remove unused variables. * config/tc-mips.c (s_mips_end): Remove unused variables.

View file

@ -1895,15 +1895,3 @@ tc_gen_reloc (seg, fixp)
return reloc; return reloc;
} }
int
s390_force_relocation (fixp)
struct fix * fixp;
{
if ( fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
|| fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
return 1;
return 0;
}

View file

@ -117,6 +117,3 @@ extern long md_pcrel_from_section PARAMS ((struct fix *, segT));
extern void s390_md_end PARAMS ((void)); extern void s390_md_end PARAMS ((void));
#define md_end() s390_md_end () #define md_end() s390_md_end ()
# define TC_FORCE_RELOCATION(fixp) s390_force_relocation (fixp)
extern int s390_force_relocation PARAMS ((struct fix *));