Commit 2b3aadfc by Richard Henderson Committed by Richard Henderson

* explow.c (probe_stack_range): Use gen_rtx_fmt_ee.

From-SVN: r54861
parent 5c44e275
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.
......
......@@ -1473,7 +1473,7 @@ probe_stack_range (first, size)
if (stack_check_libfunc != 0)
{
rtx addr = memory_address (QImode,
gen_rtx (STACK_GROW_OP, Pmode,
gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
stack_pointer_rtx,
plus_constant (size, first)));
......@@ -1492,7 +1492,7 @@ probe_stack_range (first, size)
{
insn_operand_predicate_fn pred;
rtx last_addr
= force_operand (gen_rtx_STACK_GROW_OP (Pmode,
= force_operand (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
stack_pointer_rtx,
plus_constant (size, first)),
NULL_RTX);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment