On 6/27/16 8:30 PM, Peter Bergner wrote:
On 6/27/16 3:21 PM, Segher Boessenkool wrote:
On Sat, Jun 25, 2016 at 07:14:01PM -0500, Peter Bergner wrote:
Okay for trunk, okay for 6 later. One comment:
+ if (VECTOR_MODE_P (mode)
+ && !mode_supports_vsx_dform_quad (mode))
+ return false;
if (GET_CODE (addr) != PLUS)
return false;
op0 = XEXP (addr, 0);
- if (!base_reg_operand (op0, Pmode))
+ if (!REG_P (op0)
+ || !INT_REG_OK_FOR_BASE_P (op0, strict))
return false;
Just put these short conditionals on one line each? It looks silly ;-)
Ok, committed to trunk with that change. Thanks!
...and now committed to the FSF 6 branch. Thanks.
Peter