[Bug middle-end/42488] spurious strict-aliasing warning

2009-12-24 Thread hjl dot tools at gmail dot com
--- Comment #5 from hjl dot tools at gmail dot com 2009-12-24 16:59 --- It is fixed by revision 145494: http://gcc.gnu.org/ml/gcc-cvs/2009-04/msg00115.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42488

[Bug middle-end/42488] spurious strict-aliasing warning

2009-12-23 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2009-12-24 05:40 --- Here is a reduced testcase without the include: struct complex { complex(float b = 0.0, float c = 0.0) { __real__ a = b; __imag__ a = c; } _Complex float a; }; struct A { virtual int value() const=0; }; stru