Skip to content

Commit

Permalink
#18 Combine storage and memory dependencies into single field for new…
Browse files Browse the repository at this point in the history
… greedy version
  • Loading branch information
alexcere committed Dec 6, 2024
1 parent 27842a5 commit fd33196
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser/cfg_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ def build_spec(self, initial_stack: List[str], final_stack: List[str]) -> Dict[s
sto_deps, mem_deps = self._process_dependences(self.instructions_to_synthesize, map_positions)
spec["storage_dependences"] = sto_deps
spec["memory_dependences"] = mem_deps
spec["dependencies"] = [*sto_deps, *mem_deps]

# Just to print information if it is not a jump
if not self._jump_type in ["conditional", "unconditional"]:
Expand Down

0 comments on commit fd33196

Please sign in to comment.