mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-12 09:39:30 +08:00
* config/tc-v850.c (md_assemble): When no reloc, create pcrel fixups
only for V850_OPERAND_DISP operands.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-07-15 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* config/tc-v850.c (md_assemble): When no reloc, create pcrel fixups
|
||||||
|
only for V850_OPERAND_DISP operands.
|
||||||
|
|
||||||
2003-07-15 Alan Modra <amodra@bigpond.net.au>
|
2003-07-15 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* frags.c (frag_more): Move segment checks to..
|
* frags.c (frag_more): Move segment checks to..
|
||||||
|
@ -1158,7 +1158,6 @@ md_show_usage (stream)
|
|||||||
fprintf (stream, _(" -mv850e The code is targeted at the v850e\n"));
|
fprintf (stream, _(" -mv850e The code is targeted at the v850e\n"));
|
||||||
fprintf (stream, _(" -mv850any The code is generic, despite any processor specific instructions\n"));
|
fprintf (stream, _(" -mv850any The code is generic, despite any processor specific instructions\n"));
|
||||||
fprintf (stream, _(" -mrelax Enable relaxation\n"));
|
fprintf (stream, _(" -mrelax Enable relaxation\n"));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
@ -2216,7 +2215,7 @@ md_assemble (str)
|
|||||||
fix_new_exp (frag_now,
|
fix_new_exp (frag_now,
|
||||||
f - frag_now->fr_literal, 4,
|
f - frag_now->fr_literal, 4,
|
||||||
& fixups[i].exp,
|
& fixups[i].exp,
|
||||||
1 /* FIXME: V850_OPERAND_RELATIVE ??? */,
|
(operand->flags & V850_OPERAND_DISP) != 0,
|
||||||
(bfd_reloc_code_real_type) (fixups[i].opindex
|
(bfd_reloc_code_real_type) (fixups[i].opindex
|
||||||
+ (int) BFD_RELOC_UNUSED));
|
+ (int) BFD_RELOC_UNUSED));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user