Skip to content

Commit

Permalink
Set fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
fnhartmann committed Jan 18, 2024
1 parent ae6c92f commit 48b3188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decompiler/backend/codevisitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, task: DecompilerTask):
self._int_repr_scope: int = task.options.getint("code-generator.int_representation_scope", fallback=256)
self._neg_hex_as_twos_complement: bool = task.options.getboolean("code-generator.negative_hex_as_twos_complement", fallback=True)
self._aggressive_array_detection: bool = task.options.getboolean("code-generator.aggressive_array_detection", fallback=False)
self._simplify_branches: bool = task.options.getboolean("code-generator.simplify_branches")
self._simplify_branches: bool = task.options.getboolean("code-generator.simplify_branches", fallback=False)
self.task = task

def visit_seq_node(self, node: ast_nodes.SeqNode) -> str:
Expand Down

0 comments on commit 48b3188

Please sign in to comment.