We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c079d commit fc363b3Copy full SHA for fc363b3
src/goto-programs/goto_trace.cpp
@@ -47,7 +47,9 @@ void goto_trace_stept::output(
47
case goto_trace_stept::typet::DEAD: out << "DEAD"; break;
48
case goto_trace_stept::typet::OUTPUT: out << "OUTPUT"; break;
49
case goto_trace_stept::typet::INPUT: out << "INPUT"; break;
50
- case goto_trace_stept::typet::ATOMIC_BEGIN: out << "ATOMC_BEGIN"; break;
+ case goto_trace_stept::typet::ATOMIC_BEGIN:
51
+ out << "ATOMIC_BEGIN";
52
+ break;
53
case goto_trace_stept::typet::ATOMIC_END: out << "ATOMIC_END"; break;
54
case goto_trace_stept::typet::SHARED_READ: out << "SHARED_READ"; break;
55
case goto_trace_stept::typet::SHARED_WRITE: out << "SHARED WRITE"; break;
0 commit comments