2018-02-06 Richard Biener <rguenther@suse.de>
* config/i386/i386.c (print_reg): Fix typo.
(ix86_loop_unroll_adjust): Do not unroll beyond the original nunroll.
From-SVN: r257407
+2018-02-06 Richard Biener <rguenther@suse.de>
+
+ * config/i386/i386.c (print_reg): Fix typo.
+ (ix86_loop_unroll_adjust): Do not unroll beyond the original nunroll.
+
2018-02-06 Eric Botcazou <ebotcazou@adacore.com>
* configure: Regenerate.
F,f -- likewise, but for floating-point.
O -- if HAVE_AS_IX86_CMOV_SUN_SYNTAX, expand to "w.", "l." or "q.",
otherwise nothing
- R -- print embeded rounding and sae.
+ R -- print embedded rounding and sae.
r -- print only sae.
z -- print the opcode suffix for the size of the current operand.
Z -- likewise, with special suffixes for x87 instructions.
free (bbs);
if (mem_count && mem_count <=32)
- return 32/mem_count;
+ return MIN (nunroll, 32 / mem_count);
return nunroll;
}