We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc48a8 commit 955f166Copy full SHA for 955f166
src/goto-programs/goto_program.h
@@ -977,6 +977,17 @@ class goto_programt
977
{});
978
}
979
980
+ static instructiont
981
+ make_incomplete_goto(const source_locationt &l = source_locationt::nil())
982
+ {
983
+ return instructiont(
984
+ static_cast<const codet &>(get_nil_irep()),
985
+ l,
986
+ INCOMPLETE_GOTO,
987
+ true_exprt(),
988
+ {});
989
+ }
990
+
991
static instructiont make_incomplete_goto(
992
const code_gotot &_code,
993
const source_locationt &l = source_locationt::nil())
0 commit comments