You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cil.ml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -736,6 +736,7 @@ and stmt = {
736
736
and the context in which this
737
737
statement appears *)
738
738
mutable preds: stmtlist;(** The inverse of the succs function*)
739
+
mutable fallthrough: stmtoption;(** The fallthrough successor statement computed from the context of this statement in {!Cil.computeCFGInto}. Useful for the syntactic successor of Goto and Loop. *)
Copy file name to clipboardExpand all lines: src/cil.mli
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -925,6 +925,8 @@ and stmt = {
925
925
* the CFG is computed. *)
926
926
mutable preds: stmtlist;
927
927
(** The inverse of the succs function. *)
928
+
mutable fallthrough: stmtoption;
929
+
(** The fallthrough successor statement computed from the context of this statement in {!Cil.computeCFGInto}. Useful for the syntactic successor of Goto and Loop. *)
0 commit comments