------- Comment #3 from pinskia at gcc dot gnu dot org  2005-11-23 15:41 -------
Reduced testcase:
int * f(void);
void g(int*);
bool h(void);
void Find( )
{
    int * pRes = f();
    if( !pRes )  {
        if( h()){
          if( h()){
            try     
             {       
                pRes = new int();
                f();    
             }catch(int& e1 ){}    
          }     
          if( !pRes )
            f();    
        }
        g(pRes);
    }
}

-----

This is jump threading related.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at gcc dot gnu dot org


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

Reply via email to