[Bug tree-optimization/34138] [4.3 Regression] verify_ssa failed (found real variable when subvariables should have appeared)
rguenth at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed Dec 5 19:11:00 GMT 2007
------- Comment #7 from rguenth at gcc dot gnu dot org 2007-12-05 19:11 -------
extern void free (void *__ptr);
struct shparam
{
char **p;
int foo;
};
static struct shparam shellparam;
inline void freeparam (volatile struct shparam *param, char **ap)
{
free ((void *) (*ap));
free ((void *) (param->p));
}
void dotcmd (char **p)
{
freeparam (&shellparam, p);
}
void evaltree (void)
{
void (*evalfn) (char **);
evalfn = dotcmd;
}
Still ICEs at -O2 for me.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34138
More information about the Gcc-bugs
mailing list