re PR tree-optimization/50622 (ICE: verify_gimple failed for std::complex<double>)

2011-12-02  Martin Jambor  <mjambor@suse.cz>

	PR tree-optimization/50622
	* tree-sra.c (load_assign_lhs_subreplacements): Force gimple operand
	if both lacc and racc are grp_partial_lhs.

	* testsuite/g++.dg/tree-ssa/pr50622.C: New test.

From-SVN: r181908
This commit is contained in:
Martin Jambor 2011-12-02 13:53:03 +01:00 committed by Martin Jambor
parent 45608a43c4
commit 3e44f600c3
4 changed files with 45 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2011-12-02 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/50622
* tree-sra.c (load_assign_lhs_subreplacements): Force gimple operand
if both lacc and racc are grp_partial_lhs.
2011-12-01 Kaz Kojima <kkojima@gcc.gnu.org>
PR target/50814.

View File

@ -1,3 +1,8 @@
2011-12-02 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/50622
* g++.dg/tree-ssa/pr50622.C: New test.
2011-12-01 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/initlist61.C: New.

View File

@ -0,0 +1,30 @@
// { dg-do compile }
// { dg-options "-O2" }
typedef __complex__ double Value;
struct LorentzVector
{
LorentzVector & operator+=(const LorentzVector & a) {
theX += a.theX;
theY += a.theY;
theZ += a.theZ;
theT += a.theT;
return *this;
}
Value theX;
Value theY;
Value theZ;
Value theT;
};
inline LorentzVector
operator+(LorentzVector a, const LorentzVector & b) {
return a += b;
}
Value ex, et;
LorentzVector sum() {
LorentzVector v1; v1.theX =ex; v1.theY =ex+et; v1.theZ =ex-et; v1.theT =et;
return v1+v1;
}

View File

@ -2692,6 +2692,10 @@ load_assign_lhs_subreplacements (struct access *lacc, struct access *top_racc,
rhs = get_access_replacement (racc);
if (!useless_type_conversion_p (lacc->type, racc->type))
rhs = fold_build1_loc (loc, VIEW_CONVERT_EXPR, lacc->type, rhs);
if (racc->grp_partial_lhs && lacc->grp_partial_lhs)
rhs = force_gimple_operand_gsi (old_gsi, rhs, true, NULL_TREE,
true, GSI_SAME_STMT);
}
else
{