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 tree-optimization/22022] [4.1 Regression] ACATS ICE cxg1002 tree_split_edge, at tree-cfg.c:3025


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-16 18:58 -------
Here is a new C++ testcase (the old one does not ICE any more because we don't need to expand the 
complex variables any more):
_Complex float f();
_Complex float g();
_Complex float h()throw();
void i(float)throw();

float j(void)
{
  _Complex float x = h();
  try
  {
    try
    {
      x = f();
    }catch (...)
    {
      x += g();
    }
  }catch(...){}
  i(__builtin_crealf(x)+__builtin_cimagf(x));
}



-- 


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


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