------- Additional Comments From pinskia at gcc dot gnu dot org  2005-09-21 
11:28 -------
Confirmed, it is kinda of interesting that IA64 is one of the few targets which 
does not have the length 
attr (or have HAVE_ATTR_length defined).

The easy fix is the following:
int
get_attr_length (rtx insn)
{
#ifdef HAVE_ATTR_length
  return get_attr_length_1 (insn, insn_default_length);
#else
  return get_attr_length_1 (insn, 0);
#endif
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-09-21 11:28:43
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23991

Reply via email to