Commit 9119c7fa by Paolo Carlini Committed by Paolo Carlini

re PR c++/58207 (ICE in sort_constexpr_mem_initializers due to out of bounds vector access)

/cp
2014-04-04  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/58207
	* semantics.c (sort_constexpr_mem_initializers): Robustify loop.

/testsuite
2014-04-04  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/58207
	* g++.dg/cpp0x/constexpr-ice15.C: New.

From-SVN: r209128
parent e005b753
2014-04-04 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/58207
* semantics.c (sort_constexpr_mem_initializers): Robustify loop.
2014-04-04 Patrick Palka <patrick@parcs.ath.cx>
PR c++/44613
......
......@@ -7720,8 +7720,8 @@ sort_constexpr_mem_initializers (tree type, vec<constructor_elt, va_gc> *v)
{
tree pri = CLASSTYPE_PRIMARY_BINFO (type);
tree field_type;
constructor_elt elt;
int i;
unsigned i;
constructor_elt *ce;
if (pri)
field_type = BINFO_TYPE (pri);
......@@ -7732,14 +7732,14 @@ sort_constexpr_mem_initializers (tree type, vec<constructor_elt, va_gc> *v)
/* Find the element for the primary base or vptr and move it to the
beginning of the vec. */
vec<constructor_elt, va_gc> &vref = *v;
for (i = 0; ; ++i)
if (TREE_TYPE (vref[i].index) == field_type)
for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
if (TREE_TYPE (ce->index) == field_type)
break;
if (i > 0)
if (i > 0 && i < vec_safe_length (v))
{
elt = vref[i];
vec<constructor_elt, va_gc> &vref = *v;
constructor_elt elt = vref[i];
for (; i > 0; --i)
vref[i] = vref[i-1];
vref[0] = elt;
......
2014-04-04 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/58207
* g++.dg/cpp0x/constexpr-ice15.C: New.
2014-04-04 Jan Hubicka <hubicka@ucw.cz>
PR ipa/59626
......
// PR c++/58207
// { dg-do compile { target c++11 } }
struct A
{
virtual bool foo ();
};
struct B : public A
{
constexpr B () : A (&::n) {} // { dg-error "declared" }
};
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