Commit 6fe471c8 by Richard Earnshaw Committed by Richard Earnshaw

re PR target/47719 (ICE compiling libavcodec/adxdec.c (FFmpeg) for ARM)

	PR target/47719
	* arm.md (movhi_insn_arch4):  Accept any immediate constant.

From-SVN: r170698
parent 9d77a2c4
2011-03-05 Richard Earnshaw <rearnsha@arm.com>
PR target/47719
* arm.md (movhi_insn_arch4): Accept any immediate constant.
2011-03-05 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/47967
......
......@@ -5790,12 +5790,11 @@
;; Pattern to recognize insn generated default case above
(define_insn "*movhi_insn_arch4"
[(set (match_operand:HI 0 "nonimmediate_operand" "=r,r,m,r")
(match_operand:HI 1 "general_operand" "rI,K,r,m"))]
(match_operand:HI 1 "general_operand" "rI,K,r,mi"))]
"TARGET_ARM
&& arm_arch4
&& (GET_CODE (operands[1]) != CONST_INT
|| const_ok_for_arm (INTVAL (operands[1]))
|| const_ok_for_arm (~INTVAL (operands[1])))"
&& (register_operand (operands[0], HImode)
|| register_operand (operands[1], HImode))"
"@
mov%?\\t%0, %1\\t%@ movhi
mvn%?\\t%0, #%B1\\t%@ movhi
......
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