We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7153dc5 + 09e1041 commit 6d5ddf5Copy full SHA for 6d5ddf5
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
@@ -123,6 +123,11 @@ std::ostream &goto_programt::instructiont::output(std::ostream &out) const
123
<< '\n';
124
break;
125
}
126
+ else if(code.get_statement() == ID_expression)
127
+ {
128
+ out << "EXPRESSION " << format(code.op0()) << '\n';
129
+ break;
130
+ }
131
else if(code.get_statement() == ID_havoc_object)
132
{
133
out << "HAVOC_OBJECT " << format(code.op0()) << '\n';
0 commit comments