2017-02-21 Jakub Jelinek <jakub@redhat.com>
+ PR sanitizer/79589
+ * decl.c: Include gimplify.h.
+ (cp_finish_decomp): Make sure there is no sharing of trees
+ in between DECL_VALUE_EXPR of decomposition decls.
+
PR c++/79655
* constexpr.c (cxx_eval_array_reference): Diagnose negative subscript.
#include "plugin.h"
#include "cilk.h"
#include "builtins.h"
+#include "gimplify.h"
/* Possible cases of bad specifiers type used by bad_specifiers. */
enum bad_spec_place {
{
TREE_TYPE (v[i]) = eltype;
layout_decl (v[i], 0);
- tree t = dexp;
+ tree t = unshare_expr (dexp);
t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
eltype, t, size_int (i), NULL_TREE,
NULL_TREE);
{
TREE_TYPE (v[i]) = eltype;
layout_decl (v[i], 0);
- tree t = dexp;
+ tree t = unshare_expr (dexp);
t = build1_loc (DECL_SOURCE_LOCATION (v[i]),
i ? IMAGPART_EXPR : REALPART_EXPR, eltype,
t);
{
TREE_TYPE (v[i]) = eltype;
layout_decl (v[i], 0);
- tree t = dexp;
+ tree t = unshare_expr (dexp);
convert_vector_to_array_for_subscript (DECL_SOURCE_LOCATION (v[i]),
&t, size_int (i));
t = build4_loc (DECL_SOURCE_LOCATION (v[i]), ARRAY_REF,
continue;
else
{
- tree tt = finish_non_static_data_member (field, t, NULL_TREE);
+ tree tt = finish_non_static_data_member (field, unshare_expr (t),
+ NULL_TREE);
if (REFERENCE_REF_P (tt))
tt = TREE_OPERAND (tt, 0);
TREE_TYPE (v[i]) = TREE_TYPE (tt);
+2017-02-21 Jakub Jelinek <jakub@redhat.com>
+
+ PR sanitizer/79589
+ * g++.dg/ubsan/pr79589.C: New test.
+
2017-02-21 Jeff Law <law@redhat.com>
PR tree-optimization/79621
--- /dev/null
+// PR sanitizer/79589
+// { dg-do compile }
+// { dg-options "-fsanitize=undefined -std=c++1z" }
+
+struct A { char a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r; } a[64];
+
+void
+foo ()
+{
+ int z = 0;
+ for (auto & [ b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s ] : a)
+ z += b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s;
+}