This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/15101] Trying to use diouble precision SIMD vector causes: internal compiler error: in extract_bit_field, at expmed.c:1152
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 23 Jul 2004 03:43:19 -0000
- Subject: [Bug middle-end/15101] Trying to use diouble precision SIMD vector causes: internal compiler error: in extract_bit_field, at expmed.c:1152
- References: <20040423142416.15101.ahu@ds9a.nl>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-07-23 03:43 -------
The reduced testcase no longer fails as the code is removed before getting to RTL. Here is a better
reduced testcase:
typedef double v4df __attribute__((vector_size(64)));
v4df main()
{
v4df a, b;
b = b + a;
return b;
}
--
What |Removed |Added
----------------------------------------------------------------------------
Component|rtl-optimization |middle-end
Last reconfirmed|2004-04-23 15:09:07 |2004-07-23 03:43:19
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15101