(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
tree-ssa/
loop-cond-split-1.C
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-tree-lsplit-details" } */

#include <string>
#include <map>

using namespace std;

class  A
{
public:
  bool empty;
  void set (string s);
};

class  B
{
  map<int, string> m;
  void f ();
};

extern A *ga;

void B::f ()
{
  for (map<int, string>::iterator iter = m.begin (); iter != m.end (); ++iter)
    {
      if (ga->empty)
        ga->set (iter->second);
    }
}

/* { dg-final { scan-tree-dump-times "loop split on semi-invariant condition at false branch" 1 "lsplit" } } */