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 36e4d6f commit cedc94eCopy full SHA for cedc94e
src/goto-symex/symex_target_equation.cpp
@@ -915,13 +915,13 @@ void symex_target_equationt::SSA_stept::output(std::ostream &out) const
915
UNREACHABLE;
916
}
917
918
- if(is_assert() || is_assume() || is_assignment() || is_constraint())
+ if(is_assert() || is_assume() || is_constraint())
919
out << format(cond_expr) << '\n';
920
921
if(is_assert() || is_constraint())
922
out << comment << '\n';
923
924
- if(is_shared_read() || is_shared_write())
+ if(is_shared_read() || is_shared_write() || is_assignment())
925
out << format(ssa_lhs) << '\n';
926
927
out << "Guard: " << format(guard) << '\n';
0 commit comments