------- Additional Comments From reichelt at gcc dot gnu dot org 2004-12-01
00:42 -------
> gcc version 4.0.0 20041130 (experimental) does not ICE in any testcase,
> so this is not a 4.0 regression.
Well, that's not quite true. The following testcase still crashes
on mainline when compiled with "gcc -msse" (see also second-to-last
paragraph in comment #11):
======================================================
typedef double v2df __attribute__((vector_size(16)));
void foo()
{
v2df x={0.0,0.0};
__builtin_ia32_xorpd(x,x);
}
======================================================
--
What |Removed |Added
----------------------------------------------------------------------------
Summary|[3.4 Regression] ICE in |[3.4/4.0 Regression] ICE in
|_mm_xor_pd for SSE2 with -O1|_mm_xor_pd for SSE2 with -O1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14981