Commit 91de08c3 by Richard Earnshaw Committed by Richard Earnshaw

arm.c (arm_addimm_operand): MODE arguemnt is unused.

* arm.c (arm_addimm_operand): MODE arguemnt is unused.
* arm.md (cbranchne_decr1): Fix bootstrap warning.

From-SVN: r72466
parent 821281db
2003-10-14 Richard Earnshaw <rearnsha@arm.com>
* arm.c (arm_addimm_operand): MODE arguemnt is unused.
* arm.md (cbranchne_decr1): Fix bootstrap warning.
2003-10-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* fixinc/inclhack.def (alpha_pthread_gcc): New fix.
......
......@@ -3752,7 +3752,7 @@ arm_add_operand (rtx op, enum machine_mode mode)
/* Return TRUE for valid ARM constants (or when valid if negated). */
int
arm_addimm_operand (rtx op, enum machine_mode mode)
arm_addimm_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
{
return (GET_CODE (op) == CONST_INT
&& (const_ok_for_arm (INTVAL (op))
......
......@@ -5286,13 +5286,13 @@
switch (get_attr_length (insn) - (which_alternative ? 2 : 0))
{
case 4:
output_asm_insn (\"b%d0\\t%l1\", &cond);
output_asm_insn (\"b%d0\\t%l1\", cond);
return \"\";
case 6:
output_asm_insn (\"b%D0\\t.LCB%=\", &cond);
output_asm_insn (\"b%D0\\t.LCB%=\", cond);
return \"b\\t%l4\\t%@long jump\\n.LCB%=:\";
default:
output_asm_insn (\"b%D0\\t.LCB%=\", &cond);
output_asm_insn (\"b%D0\\t.LCB%=\", cond);
return \"bl\\t%l4\\t%@far jump\\n.LCB%=:\";
}
}
......
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