This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug middle-end/15101] Trying to use diouble precision SIMD vector causes: internal compiler error: in extract_bit_field, at expmed.c:1152


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]