not Ijk_Boring, as that will cause events that should be passed to the
caller's scheduler, not to be.
git-svn-id: svn://svn.valgrind.org/vex/trunk@600
/* The two schemas considered are:
X: BODY; goto X
- --> X: BODY;BODY; goto X
+
+ which unrolls to (eg) X: BODY;BODY; goto X
and
st = bb0->stmts[i];
if (st->tag != Ist_Exit)
return NULL;
+ if (st->Ist.Exit.jk != Ijk_Boring)
+ return NULL;
con = st->Ist.Exit.dst;
vassert(con->tag == Ico_U32 || con->tag == Ico_U64);