Commit 014583a1 by H.J. Lu Committed by H.J. Lu

re PR middle-end/32950 (ICE with __complex__ double)

2009-06-07  H.J. Lu  <hongjiu.lu@intel.com>

	PR middle-end/32950
	* g++.dg/torture/pr32950.C: New.

From-SVN: r148244
parent 8ec259c1
2009-06-07 H.J. Lu <hongjiu.lu@intel.com>
PR middle-end/32950
* g++.dg/torture/pr32950.C: New.
2009-06-07 Daniel Franke <franke.daniel@gmail.com> 2009-06-07 Daniel Franke <franke.daniel@gmail.com>
PR fortran/25104 PR fortran/25104
......
/* { dg-do compile } */
struct A
{
__complex__ double c;
};
struct B
{
A a;
B(A x) : a(x) {}
void foo();
};
void bar()
{
B b = A();
B(b).foo();
}
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