Commit c1ddc8e9 by Richard Sandiford Committed by Richard Sandiford

fr30.md (indirect_jump): Use pmode_register_operand instead of nonimmediate_operand.

gcc/
	* config/fr30/fr30.md (indirect_jump): Use pmode_register_operand
	instead of nonimmediate_operand.  Remove C condiition.

From-SVN: r226320
parent cfce0488
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.
......
......@@ -1146,8 +1146,8 @@
;; 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")]
)
......
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