mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
gas/
2005-05-25 Jan Beulich <jbeulich@novell.com> * config/tc-ia64.c (struct unw_rec_list): Remove next_slot_number and next_slot_frag. (alloc_record): Remove references to next_slot_number and next_slot_frag. (emit_one_bundle): Likewise.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2005-05-25 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (struct unw_rec_list): Remove next_slot_number
|
||||||
|
and next_slot_frag.
|
||||||
|
(alloc_record): Remove references to next_slot_number and
|
||||||
|
next_slot_frag.
|
||||||
|
(emit_one_bundle): Likewise.
|
||||||
|
|
||||||
2005-05-22 Nick Clifton <nickc@redhat.com>
|
2005-05-22 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* config/tc-v850.c (md_apply_fix3): Pass the address of the
|
* config/tc-v850.c (md_apply_fix3): Pass the address of the
|
||||||
|
@ -695,8 +695,6 @@ typedef struct unw_rec_list {
|
|||||||
unwind_record r;
|
unwind_record r;
|
||||||
unsigned long slot_number;
|
unsigned long slot_number;
|
||||||
fragS *slot_frag;
|
fragS *slot_frag;
|
||||||
unsigned long next_slot_number;
|
|
||||||
fragS *next_slot_frag;
|
|
||||||
struct unw_rec_list *next;
|
struct unw_rec_list *next;
|
||||||
} unw_rec_list;
|
} unw_rec_list;
|
||||||
|
|
||||||
@ -1750,8 +1748,6 @@ alloc_record (unw_record_type t)
|
|||||||
ptr->next = NULL;
|
ptr->next = NULL;
|
||||||
ptr->slot_number = SLOT_NUM_NOT_SET;
|
ptr->slot_number = SLOT_NUM_NOT_SET;
|
||||||
ptr->r.type = t;
|
ptr->r.type = t;
|
||||||
ptr->next_slot_number = 0;
|
|
||||||
ptr->next_slot_frag = 0;
|
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6922,12 +6918,6 @@ emit_one_bundle ()
|
|||||||
|
|
||||||
number_to_chars_littleendian (f + 0, t0, 8);
|
number_to_chars_littleendian (f + 0, t0, 8);
|
||||||
number_to_chars_littleendian (f + 8, t1, 8);
|
number_to_chars_littleendian (f + 8, t1, 8);
|
||||||
|
|
||||||
if (unwind.list)
|
|
||||||
{
|
|
||||||
unwind.list->next_slot_number = (unsigned long) f + 16;
|
|
||||||
unwind.list->next_slot_frag = frag_now;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Reference in New Issue
Block a user