[Bug tree-optimization/18291] [4.0 Regression]: ICE in merge_alias_info

reichelt at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Sat Nov 6 22:13:00 GMT 2004


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-11-06 22:13 -------
Here's a C testcase:

================================
inline int foo() { return 0; }

void bar(int*);

void baz()
{
    int i, j, *p = &i+1;

    if (foo())
    {
        bar(p);
        p = &j;
    }
    bar(p);
}
================================


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
           Keywords|                            |monitored


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



More information about the Gcc-bugs mailing list