2019-10-03 Aaron Sawdey <acsawdey@linux.ibm.com>
* expr.c (emit_block_move_hints): Slightly cleaner fix to
can_move_by_pieces issue.
From-SVN: r276542
+2019-10-03 Aaron Sawdey <acsawdey@linux.ibm.com>
+
+ * expr.c (emit_block_move_hints): Slightly cleaner fix to
+ can_move_by_pieces issue.
+
2019-10-03 Iain Sandoe <iain@sandoe.co.uk>
PR target/87243
set_mem_size (y, const_size);
}
- bool pieces_ok = false;
- if (CONST_INT_P (size))
- pieces_ok = can_move_by_pieces (INTVAL (size), align);
+ bool pieces_ok = CONST_INT_P (size)
+ && can_move_by_pieces (INTVAL (size), align);
bool pattern_ok = false;
if (!pieces_ok || might_overlap)