* explow.c (probe_stack_range): Use gen_rtx_fmt_ee.

From-SVN: r54861
This commit is contained in:
Richard Henderson 2002-06-20 16:15:17 -07:00 committed by Richard Henderson
parent 5c44e27551
commit 2b3aadfc7b
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2002-06-20 Richard Henderson <rth@redhat.com>
* explow.c (probe_stack_range): Use gen_rtx_fmt_ee.
2002-06-20 Chris Demetriou <cgd@broadcom.com>
* config.gcc (mipsisa64-*-elf*, mipsisa64el-*-elf*): New targets.

View File

@ -1473,9 +1473,9 @@ probe_stack_range (first, size)
if (stack_check_libfunc != 0)
{
rtx addr = memory_address (QImode,
gen_rtx (STACK_GROW_OP, Pmode,
stack_pointer_rtx,
plus_constant (size, first)));
gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
stack_pointer_rtx,
plus_constant (size, first)));
#ifdef POINTERS_EXTEND_UNSIGNED
if (GET_MODE (addr) != ptr_mode)
@ -1492,9 +1492,9 @@ probe_stack_range (first, size)
{
insn_operand_predicate_fn pred;
rtx last_addr
= force_operand (gen_rtx_STACK_GROW_OP (Pmode,
stack_pointer_rtx,
plus_constant (size, first)),
= force_operand (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
stack_pointer_rtx,
plus_constant (size, first)),
NULL_RTX);
pred = insn_data[(int) CODE_FOR_check_stack].operand[0].predicate;