gcc/
* config/fr30/fr30.md (indirect_jump): Use pmode_register_operand
instead of nonimmediate_operand. Remove C condiition.
From-SVN: r226320
+2015-07-28 Richard Sandiford <richard.sandiford@arm.com>
+
+ * config/fr30/fr30.md (indirect_jump): Use pmode_register_operand
+ instead of nonimmediate_operand. Remove C condiition.
+
2015-07-28 Richard Biener <rguenther@suse.de>
* match.pd: Add more simplification of address comparisons.
;; Indirect jump through a register
(define_insn "indirect_jump"
- [(set (pc) (match_operand:SI 0 "nonimmediate_operand" "r"))]
- "GET_CODE (operands[0]) != MEM || GET_CODE (XEXP (operands[0], 0)) != PLUS"
+ [(set (pc) (match_operand 0 "pmode_register_operand" "r"))]
+ ""
"jmp%#\\t@%0"
[(set_attr "delay_type" "delayed")]
)