mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
Fix v850 .offset pseudo-op
* config/tc-v850.c (v850_offset): Use frag_var instead of frag_now_fix and frag_more.
This commit is contained in:
parent
afbcd36fc1
commit
825487fa2d
@ -1,3 +1,8 @@
|
||||
2002-09-26 Jim Wilson <wilson@redhat.com>
|
||||
|
||||
* config/tc-v850.c (v850_offset): Use frag_var instead of frag_now_fix
|
||||
and frag_more.
|
||||
|
||||
2002-09-26 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* config/tc-mips.c (CPU_HAS_MIPS16): Add mips-lsi-elf as MIPS16
|
||||
|
@ -193,12 +193,12 @@ static void
|
||||
v850_offset (ignore)
|
||||
int ignore ATTRIBUTE_UNUSED;
|
||||
{
|
||||
char *pfrag;
|
||||
int temp = get_absolute_expression ();
|
||||
|
||||
temp -= frag_now_fix ();
|
||||
|
||||
if (temp > 0)
|
||||
(void) frag_more (temp);
|
||||
|
||||
pfrag = frag_var (rs_org, 1, 1, (relax_substateT)0, (symbolS *)0,
|
||||
(offsetT) temp, (char *) 0);
|
||||
*pfrag = 0;
|
||||
|
||||
demand_empty_rest_of_line ();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user