Commit 78773322 by Paul Brook Committed by Paul Brook

* config/arm/arm.c (thumb_expand_prologue): Remove bogus GEN_INT.

From-SVN: r84979
parent 406d77a4
2004-07-21 Paul brook <paul@codesourcery.com>
* config/arm/arm.c (thumb_expand_prologue): Remove bogus GEN_INT.
2004-07-20 Zack Weinberg <zack@codesourcery.com>
* rtl.h (plus_constant): Delete.
......
......@@ -13264,7 +13264,7 @@ thumb_expand_prologue (void)
RTX_FRAME_RELATED_P (insn) = 1;
dwarf = gen_rtx_SET (SImode, stack_pointer_rtx,
plus_constant (stack_pointer_rtx,
GEN_INT (- amount)));
-amount));
RTX_FRAME_RELATED_P (dwarf) = 1;
REG_NOTES (insn)
= gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR, dwarf,
......@@ -13290,7 +13290,7 @@ thumb_expand_prologue (void)
RTX_FRAME_RELATED_P (insn) = 1;
dwarf = gen_rtx_SET (SImode, stack_pointer_rtx,
plus_constant (stack_pointer_rtx,
GEN_INT (- amount)));
-amount));
RTX_FRAME_RELATED_P (dwarf) = 1;
REG_NOTES (insn)
= gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR, dwarf,
......
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