Commit 37f2edf5 by Richard Earnshaw Committed by Richard Earnshaw

re PR target/61208 (armhf: generated asm code produces "branch out of range" error in gas with -Os)

	PR target/61208
	* arm.md (arm_cmpdi_unsigned): Fix length calculation for Thumb2.

From-SVN: r210812
parent 161c9312
2014-05-22 Richard Earnshaw <rearnsha@arm.com>
PR target/61208
* arm.md (arm_cmpdi_unsigned): Fix length calculation for Thumb2.
2014-05-22 Nick Clifton <nickc@redhat.com>
* config/msp430/msp430.h (ASM_SPEC): Add spaces after inserted
......
......@@ -8371,8 +8371,8 @@
(define_insn_and_split "*arm_cmpdi_unsigned"
[(set (reg:CC_CZ CC_REGNUM)
(compare:CC_CZ (match_operand:DI 0 "s_register_operand" "l,r,r")
(match_operand:DI 1 "arm_di_operand" "Py,r,rDi")))]
(compare:CC_CZ (match_operand:DI 0 "s_register_operand" "l,r,r,r")
(match_operand:DI 1 "arm_di_operand" "Py,r,Di,rDi")))]
"TARGET_32BIT"
"#" ; "cmp\\t%R0, %R1\;it eq\;cmpeq\\t%Q0, %Q1"
......@@ -8392,9 +8392,9 @@
operands[1] = gen_lowpart (SImode, operands[1]);
}
[(set_attr "conds" "set")
(set_attr "enabled_for_depr_it" "yes,yes,no")
(set_attr "arch" "t2,t2,*")
(set_attr "length" "6,6,8")
(set_attr "enabled_for_depr_it" "yes,yes,no,*")
(set_attr "arch" "t2,t2,t2,a")
(set_attr "length" "6,6,10,8")
(set_attr "type" "multiple")]
)
......
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