Commit 4827be7a by Andrew Pinski Committed by Andrew Pinski

re PR tree-optimization/17624 (ICE: SSA corruption (another one))

2004-09-24  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/17624
        * g++.dg/opt/pr17624.C: New test.

From-SVN: r88034
parent c80a4b7e
2004-09-24 Andrew Pinski <pinskia@physics.uc.edu>
PR tree-opt/17624
* g++.dg/opt/pr17624.C: New test.
2004-09-24 Joseph S. Myers <jsm@polyomino.org.uk> 2004-09-24 Joseph S. Myers <jsm@polyomino.org.uk>
PR c/6980 PR c/6980
......
// { dg-do compile }
// { dg-options "-O2" }
extern void foo (void);
int c;
void foo (int n)
{
int j = 0;
try
{
for(;;)
{
foo ();
if (j ++ == n)
break;
foo ();
}
}
catch (...)
{
c = j;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment