* explow.c (probe_stack_range): Use gen_rtx_fmt_ee.
From-SVN: r54861
This commit is contained in:
parent
5c44e27551
commit
2b3aadfc7b
@ -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.
|
||||
|
12
gcc/explow.c
12
gcc/explow.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user