Commit 4b0b30ef by Jason Merrill Committed by Jason Merrill

* cp-gimplify.c (cp_fold) [CONSTRUCTOR]: Don't clobber the input.

From-SVN: r232524
parent 8d8f3235
2016-01-18 Jason Merrill <jason@redhat.com> 2016-01-18 Jason Merrill <jason@redhat.com>
* cp-gimplify.c (cp_fold) [CONSTRUCTOR]: Don't clobber the input.
* cp-gimplify.c (cp_fold): Remove unnecessary special cases. * cp-gimplify.c (cp_fold): Remove unnecessary special cases.
PR c++/68767 PR c++/68767
......
...@@ -2125,9 +2125,22 @@ cp_fold (tree x) ...@@ -2125,9 +2125,22 @@ cp_fold (tree x)
{ {
unsigned i; unsigned i;
constructor_elt *p; constructor_elt *p;
bool changed = false;
vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (x); vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (x);
vec<constructor_elt, va_gc> *nelts = NULL;
vec_safe_reserve (nelts, vec_safe_length (elts));
FOR_EACH_VEC_SAFE_ELT (elts, i, p) FOR_EACH_VEC_SAFE_ELT (elts, i, p)
p->value = cp_fold (p->value); {
tree op = cp_fold (p->value);
constructor_elt e = { p->index, op };
nelts->quick_push (e);
if (op != p->value)
changed = true;
}
if (changed)
x = build_constructor (TREE_TYPE (x), nelts);
else
vec_free (nelts);
break; break;
} }
case TREE_VEC: case TREE_VEC:
......
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