On 03/29/2011 08:49 AM, Henderson, Stuart wrote:
> (match_operand:SI 2 "immediate_operand" "")))]
> ""
> {
> - if (INTVAL (operands[2]) != 16)
> + if (GET_CODE (operands[2]) != CONST_INT || INTVAL (operands[2]) != 16)
> FAIL;Perhaps use const_int_operand instead of immediate_operand. r~
