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 c00319e commit 09e1041Copy full SHA for 09e1041
regression/goto-instrument/remove-calls-no-body2/test.desc
@@ -6,8 +6,8 @@ main.c
6
^VERIFICATION SUCCESSFUL$
7
func3\(\)
8
func4\(\)
9
-567\)
10
-285\)
+567$
+285$
11
ret1 :=.*nondet.*
12
--
13
func1\(.*\)
src/goto-programs/goto_program.cpp
@@ -124,6 +124,11 @@ std::ostream &goto_programt::instructiont::output(std::ostream &out) const
124
<< '\n';
125
break;
126
}
127
+ else if(code.get_statement() == ID_expression)
128
+ {
129
+ out << "EXPRESSION " << format(code.op0()) << '\n';
130
+ break;
131
+ }
132
else if(code.get_statement() == ID_havoc_object)
133
{
134
out << "HAVOC_OBJECT " << format(code.op0()) << '\n';
0 commit comments