+2018-06-05 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/86046
+ * tree-ssa.c (maybe_optimize_var): Clear DECL_GIMPLE_REG_P
+ if required after clearing TREE_ADDRESSABLE.
+
2018-06-05 Richard Biener <rguenther@suse.de>
PR tree-optimization/86047
+2018-06-05 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/86046
+ * gcc.dg/pr86046.c: New testcase.
+
2018-06-05 Richard Biener <rguenther@suse.de>
PR tree-optimization/86047
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+typedef int V __attribute__ ((vector_size(4)));
+void fn1 ()
+{
+ (V){(1,0)}[1] = 0; // out-of-bound access
+}
|| !bitmap_bit_p (not_reg_needs, DECL_UID (var))))
{
TREE_ADDRESSABLE (var) = 0;
+ /* If we cleared TREE_ADDRESSABLE make sure DECL_GIMPLE_REG_P
+ is unset if we cannot rewrite the var into SSA. */
+ if ((TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE
+ || TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE)
+ && bitmap_bit_p (not_reg_needs, DECL_UID (var)))
+ DECL_GIMPLE_REG_P (var) = 0;
if (is_gimple_reg (var))
bitmap_set_bit (suitable_for_renaming, DECL_UID (var));
if (dump_file)