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/32032] [4.3 Regression] ICE in compute_antic, at tree-ssa-pre.c:1968 at -O3



------- Comment #1 from tbm at cyrius dot com  2007-05-22 10:06 -------
Reduced testcase:

struct shparam
{
  char **p;
};
freeparam (volatile struct shparam *param)
{
  char **ap;
  for (ap = param->p; *ap; ap++)
    free ((void *) (param->p));
}
struct shparam shellparam;
setparam (void)
{
  freeparam (&shellparam);
}


-- 


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


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