2018-06-05 Richard Biener <rguenther@suse.de>
PR tree-optimization/86047
* tree-ssa-loop.c (for_each_index): Glob handling of all
decls and constants and really handle all of them.
* gcc.dg/pr86047.c: New testcase.
From-SVN: r261192
+2018-06-05 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/86047
+ * tree-ssa-loop.c (for_each_index): Glob handling of all
+ decls and constants and really handle all of them.
+
2018-06-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR target/81497
+2018-06-05 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/86047
+ * gcc.dg/pr86047.c: New testcase.
+
2018-06-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR target/81497
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+extern void f (int, int);
+void g (int a, int b)
+{
+ int i, j;
+ for (i = a; i <= b; ++i)
+ __builtin_memcpy (g, f, 6);
+ for (j = a; j <= b; ++j)
+ f(j, i);
+}
+
return false;
break;
- case VAR_DECL:
- case PARM_DECL:
- case CONST_DECL:
- case STRING_CST:
- case RESULT_DECL:
- case VECTOR_CST:
- case COMPLEX_CST:
- case INTEGER_CST:
- case POLY_INT_CST:
- case REAL_CST:
- case FIXED_CST:
case CONSTRUCTOR:
return true;
return true;
default:
+ if (DECL_P (*addr_p)
+ || CONSTANT_CLASS_P (*addr_p))
+ return true;
gcc_unreachable ();
}
}