Commit 3e4c754b by Georg-Johann Lay

* config/avr/avr.c (byte_immediate_operand): Remove Function.

From-SVN: r178067
parent 01bb8ae2
......@@ -1628,15 +1628,6 @@ ret_cond_branch (rtx x, int len, int reverse)
return "";
}
/* Predicate function for immediate operand which fits to byte (8bit) */
int
byte_immediate_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
{
return (GET_CODE (op) == CONST_INT
&& INTVAL (op) <= 0xff && INTVAL (op) >= 0);
}
/* Output insn cost for next insn. */
void
......
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