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/15902] [3.5 Regression] ICE in tree_ssa_dominator_optimize


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-16 08:20 -------
Here is another testcase:
void foo (char *name)
{
  if (name == 0)
    name = 0;
  while (name);
  asm ("hello, world" : "=r" (name));
}
And another which is does not use asm:
int g();
void foo (int name)
{
  if (name == 0)
    name = 0;
  while (name);
  name = g();
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2004-06-09 18:52:16         |2004-06-16 08:20:17
               date|                            |


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


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