* config/i386/i386.md (*jcc_bt<mode>): Only allow const_int values
more than or equal 8 and less than 32 when optimizing for size.
From-SVN: r225539
+2015-07-08 Uros Bizjak <ubizjak@gmail.com>
+
+ * config/i386/i386.md (*jcc_bt<mode>): Only allow const_int values
+ more than or equal 8 and less than 32 when optimizing for size.
+
2015-07-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/arm.c (arm_new_rtx_costs): Initialise cost to
&& (CONST_INT_P (operands[2])
? (INTVAL (operands[2]) < GET_MODE_BITSIZE (<MODE>mode)
&& INTVAL (operands[2])
- >= (optimize_function_for_size_p (cfun) ? 0 : 32))
+ >= (optimize_function_for_size_p (cfun) ? 8 : 32))
: register_operand (operands[2], SImode))
&& can_create_pseudo_p ()"
"#"