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 optimization/9900] [3.4 Regression] [new-ra] -O2 and ICE in verify_flow_info


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2003-06-28 19:12:05         |2003-07-15 15:11:40
               date|                            |


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-15 15:11 -------
Here is the reduced testcase (10 lines):
const char *get_osabi_name (unsigned int);
const char *
get_ia64_section_type_name (sh_type)
     unsigned int sh_type;
{

  if ((sh_type & 0xFF000000) == (0x70000000 + 0x8000000))
    return get_osabi_name ((sh_type & 0x00FF0000) >> 16);
  return ((void *)0);
}


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