Commit 0e609565 by Richard Biener Committed by Richard Biener

i386.c (print_reg): Fix typo.

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
parent 9718199a
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> 2018-02-06 Eric Botcazou <ebotcazou@adacore.com>
* configure: Regenerate. * configure: Regenerate.
......
...@@ -17946,7 +17946,7 @@ print_reg (rtx x, int code, FILE *file) ...@@ -17946,7 +17946,7 @@ print_reg (rtx x, int code, FILE *file)
F,f -- likewise, but for floating-point. F,f -- likewise, but for floating-point.
O -- if HAVE_AS_IX86_CMOV_SUN_SYNTAX, expand to "w.", "l." or "q.", O -- if HAVE_AS_IX86_CMOV_SUN_SYNTAX, expand to "w.", "l." or "q.",
otherwise nothing otherwise nothing
R -- print embeded rounding and sae. R -- print embedded rounding and sae.
r -- print only sae. r -- print only sae.
z -- print the opcode suffix for the size of the current operand. z -- print the opcode suffix for the size of the current operand.
Z -- likewise, with special suffixes for x87 instructions. Z -- likewise, with special suffixes for x87 instructions.
...@@ -50560,7 +50560,7 @@ ix86_loop_unroll_adjust (unsigned nunroll, struct loop *loop) ...@@ -50560,7 +50560,7 @@ ix86_loop_unroll_adjust (unsigned nunroll, struct loop *loop)
free (bbs); free (bbs);
if (mem_count && mem_count <=32) if (mem_count && mem_count <=32)
return 32/mem_count; return MIN (nunroll, 32 / mem_count);
return nunroll; return nunroll;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment