forked from Imagelibrary/binutils-gdb
gas/
2005-05-25 Jan Beulich <jbeulich@novell.com> * config/tc-ia64.c (dot_endp): Clear out all three pointers in unwind section entry.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2005-05-25 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (dot_endp): Clear out all three pointers in unwind
|
||||||
|
section entry.
|
||||||
|
|
||||||
2005-05-25 Jan Beulich <jbeulich@novell.com>
|
2005-05-25 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* config/tc-ia64.c (dot_radix): Rewrite.
|
* config/tc-ia64.c (dot_radix): Rewrite.
|
||||||
|
|||||||
@@ -4386,7 +4386,6 @@ dot_endp (dummy)
|
|||||||
int dummy ATTRIBUTE_UNUSED;
|
int dummy ATTRIBUTE_UNUSED;
|
||||||
{
|
{
|
||||||
expressionS e;
|
expressionS e;
|
||||||
char *ptr;
|
|
||||||
int bytes_per_address;
|
int bytes_per_address;
|
||||||
long where;
|
long where;
|
||||||
segT saved_seg;
|
segT saved_seg;
|
||||||
@@ -4433,7 +4432,7 @@ dot_endp (dummy)
|
|||||||
|
|
||||||
/* Need space for 3 pointers for procedure start, procedure end,
|
/* Need space for 3 pointers for procedure start, procedure end,
|
||||||
and unwind info. */
|
and unwind info. */
|
||||||
ptr = frag_more (3 * md.pointer_size);
|
memset (frag_more (3 * md.pointer_size), 0, 3 * md.pointer_size);
|
||||||
where = frag_now_fix () - (3 * md.pointer_size);
|
where = frag_now_fix () - (3 * md.pointer_size);
|
||||||
bytes_per_address = bfd_arch_bits_per_address (stdoutput) / 8;
|
bytes_per_address = bfd_arch_bits_per_address (stdoutput) / 8;
|
||||||
|
|
||||||
@@ -4466,10 +4465,6 @@ dot_endp (dummy)
|
|||||||
ia64_cons_fix_new (frag_now, where + (bytes_per_address * 2),
|
ia64_cons_fix_new (frag_now, where + (bytes_per_address * 2),
|
||||||
bytes_per_address, &e);
|
bytes_per_address, &e);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
md_number_to_chars (ptr + (bytes_per_address * 2), 0,
|
|
||||||
bytes_per_address);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
subseg_set (saved_seg, saved_subseg);
|
subseg_set (saved_seg, saved_subseg);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user