(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
tree-prof/
partition3.C
// PR middle-end/45566
// { dg-require-effective-target freorder }
// { dg-options "-O2 -fnon-call-exceptions -freorder-blocks-and-partition" }

int k;

int
main ()
{
  try
  {
    if (k)
      throw 6;
  }
  catch (...)
  {
  }
}