Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/goto-symex/goto_symex_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class goto_symex_statet final : public goto_statet

// Manager is required to be able to resize the thread vector
guard_managert &guard_manager;
symex_target_equationt *symex_target;
symex_target_equationt *symex_target = nullptr;

symex_level1t level1;

Expand Down Expand Up @@ -217,14 +217,14 @@ class goto_symex_statet final : public goto_statet
goto_programt::const_targett saved_target;

/// \brief This state is saved, with the PC pointing to the target of a GOTO
bool has_saved_jump_target;
bool has_saved_jump_target = false;

/// \brief This state is saved, with the PC pointing to the next instruction
/// of a GOTO
bool has_saved_next_instruction;
bool has_saved_next_instruction = false;

/// \brief Should the additional validation checks be run?
bool run_validation_checks;
bool run_validation_checks = false;

unsigned total_vccs = 0;
unsigned remaining_vccs = 0;
Expand Down
Loading