only for a DECL which HAS_RTL_P.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194387
138bc75d-0d04-0410-961f-
82ee72b054a4
+2012-12-11 Eric Botcazou <ebotcazou@adacore.com>
+
+ * tree-ssa-loop-ivopts.c (prepare_decl_rtl) <ADDR_EXPR>: Generate RTL
+ only for a DECL which HAS_RTL_P.
+
2012-12-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/predicates.md ("execute_operation"): New predicate.
2012-12-10 Xinliang David Li <davidxl@google.com>
- * config/i386/i386.c: Enable push/pop in pro/epilogue for mordern CPUs.
+ * config/i386/i386.c: Enable push/pop in pro/epilogue for modern CPUs.
2012-12-10 Steve Ellcey <sellcey@mips.com>
expr_p = &TREE_OPERAND (*expr_p, 0))
continue;
obj = *expr_p;
- if (DECL_P (obj) && !DECL_RTL_SET_P (obj))
+ if (DECL_P (obj) && HAS_RTL_P (obj) && !DECL_RTL_SET_P (obj))
x = produce_memory_decl_rtl (obj, regno);
break;