mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
2001-04-27 David Mosberger <davidm@hpl.hp.com>
* config/tc-ia64.c (dot_spillmem_p): Fix output_spill_?sprel_p() argument passing order: predicate goes last, not first.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2001-04-27 David Mosberger <davidm@hpl.hp.com>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (dot_spillmem_p): Fix output_spill_?sprel_p()
|
||||||
|
argument passing order: predicate goes last, not first.
|
||||||
|
|
||||||
2001-04-27 Sean McNeil <sean@mcneil.com>
|
2001-04-27 Sean McNeil <sean@mcneil.com>
|
||||||
|
|
||||||
* configure.in: Add arm-vxworks.
|
* configure.in: Add arm-vxworks.
|
||||||
|
@ -3613,9 +3613,9 @@ dot_spillmem_p (psprel)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (psprel)
|
if (psprel)
|
||||||
add_unwind_entry (output_spill_psprel_p (qp, ab, reg, e3.X_add_number));
|
add_unwind_entry (output_spill_psprel_p (ab, reg, e3.X_add_number, qp));
|
||||||
else
|
else
|
||||||
add_unwind_entry (output_spill_sprel_p (qp, ab, reg, e3.X_add_number));
|
add_unwind_entry (output_spill_sprel_p (ab, reg, e3.X_add_number, qp));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user