* write.h (fixS): Rename fx_callj field to fx_tcbit.

* write.c, config/obj-coff.c, config/obj-coffbfd.c,
	config/tc-i960.c: Corresponding changes.
This commit is contained in:
Ian Lance Taylor 1993-11-10 22:06:06 +00:00
parent 4d1259b118
commit ca16b5e55a
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Wed Nov 10 16:19:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* write.h (fixS): Rename fx_callj field to fx_tcbit.
* write.c, config/obj-coff.c, config/obj-coffbfd.c,
config/tc-i960.c: Corresponding changes.
Tue Nov 9 00:49:01 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
* Makefile.in (distclean): Delete config-stamp and config.h

View File

@ -2427,7 +2427,7 @@ DEFUN (fixup_segment, (segP, this_segment_type),
size = fixP->fx_size;
add_symbolP = fixP->fx_addsy;
#ifdef TC_I960
if (fixP->fx_callj && TC_S_IS_CALLNAME (add_symbolP))
if (fixP->fx_tcbit && TC_S_IS_CALLNAME (add_symbolP))
{
/* Relocation should be done via the
associated 'bal' entry point
@ -2477,7 +2477,7 @@ DEFUN (fixup_segment, (segP, this_segment_type),
#ifdef TC_I960
/* Makes no sense to use the difference of 2 arbitrary symbols
as the target of a call instruction. */
if (fixP->fx_callj)
if (fixP->fx_tcbit)
{
as_bad ("callj to difference of 2 symbols");
}