Commit bdfdc7da by Uros Bizjak

i386.c (ix86_loop_unroll_adjust): Use PATTERN (insn) when looking for memory references.

	* config/i386/i386.c (ix86_loop_unroll_adjust): Use PATTERN (insn)
	when looking for memory references.

From-SVN: r223008
parent b1b0e905
2015-05-11 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (ix86_loop_unroll_adjust): Use PATTERN (insn)
when looking for memory references.
2015-05-11 Alexander Monakov <amonakov@ispras.ru> 2015-05-11 Alexander Monakov <amonakov@ispras.ru>
PR target/65753 PR target/65753
...@@ -13,7 +18,7 @@ ...@@ -13,7 +18,7 @@
([-fno-plt]): Document. ([-fno-plt]): Document.
2015-05-11 Markus Trippelsdorf <markus@trippelsdorf.de> 2015-05-11 Markus Trippelsdorf <markus@trippelsdorf.de>
PR bootstrap/66105 PR bootstrap/66105
* config/rs6000/option-defaults.h: Add space between string literal * config/rs6000/option-defaults.h: Add space between string literal
and macro name. and macro name.
...@@ -606,7 +611,7 @@ ...@@ -606,7 +611,7 @@
2015-05-05 Matthew Wahab <matthew.wahab@arm.com> 2015-05-05 Matthew Wahab <matthew.wahab@arm.com>
* gcc/config/aarch64-protos.h (struct cpu_branch_cost): New. * gcc/config/aarch64-protos.h (struct cpu_branch_cost): New.
(tune_params): Add field branch_costs. (tune_params): Add field branch_costs.
(aarch64_branch_cost): Declare. (aarch64_branch_cost): Declare.
* gcc/config/aarch64.c (generic_branch_cost): New. * gcc/config/aarch64.c (generic_branch_cost): New.
(generic_tunings): Set field cpu_branch_cost to generic_branch_cost. (generic_tunings): Set field cpu_branch_cost to generic_branch_cost.
...@@ -965,7 +970,7 @@ ...@@ -965,7 +970,7 @@
2015-04-30 Caroline Tice <cmtice@google.com> 2015-04-30 Caroline Tice <cmtice@google.com>
PR 65929 PR gcov-profile/65929
* config/elfos.h (ASM_DECLARE_COLD_FUNCTION_NAME): New macro definition. * config/elfos.h (ASM_DECLARE_COLD_FUNCTION_NAME): New macro definition.
(ASM_DECLARE_COLD_FUNCTION_SIZE): New macro definition. (ASM_DECLARE_COLD_FUNCTION_SIZE): New macro definition.
* doc/tm.texi.in (ASM_DECLARE_COLD_FUNCTION_NAME): Document new macro. * doc/tm.texi.in (ASM_DECLARE_COLD_FUNCTION_NAME): Document new macro.
......
...@@ -51446,7 +51446,7 @@ ix86_loop_unroll_adjust (unsigned nunroll, struct loop *loop) ...@@ -51446,7 +51446,7 @@ ix86_loop_unroll_adjust (unsigned nunroll, struct loop *loop)
for (i = 0; i < loop->num_nodes; i++) for (i = 0; i < loop->num_nodes; i++)
FOR_BB_INSNS (bbs[i], insn) FOR_BB_INSNS (bbs[i], insn)
if (NONDEBUG_INSN_P (insn)) if (NONDEBUG_INSN_P (insn))
FOR_EACH_SUBRTX (iter, array, insn, NONCONST) FOR_EACH_SUBRTX (iter, array, PATTERN (insn), NONCONST)
if (const_rtx x = *iter) if (const_rtx x = *iter)
if (MEM_P (x)) if (MEM_P (x))
{ {
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