Skip to content

Commit

Permalink
Fix another reference to DirtyExpression.
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish committed Oct 19, 2024
1 parent 3e24a4e commit 8798455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ailment/converter_pcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def _convert_unary(self) -> None:
in1 = self._get_value(self._current_op.inputs[0])
if op is None:
log.warning("p-code: Unsupported opcode of type %s", opcode.__name__)
out = DirtyExpression(self._manager.next_atom(), opcode.__name__, bits=self._current_op.output.size * 8)
out = DirtyExpression(self._manager.next_atom(), opcode.__name__, [], bits=self._current_op.output.size * 8)
else:
out = UnaryOp(self._manager.next_atom(), op, in1, ins_addr=self._manager.ins_addr)

Expand Down

0 comments on commit 8798455

Please sign in to comment.