i386.md (*jcc_bt<mode>): Only allow const_int values more than or equal 8 and less than 32 when...
* 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
This commit is contained in:
parent
94381a904d
commit
eb63d211c0
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
@ -10811,7 +10811,7 @@
|
||||
&& (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 ()"
|
||||
"#"
|
||||
|
Loading…
Reference in New Issue
Block a user