diff options
| author | Alex Cameron <asc@tetsuo.sh> | 2021-09-08 20:05:13 +1000 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-15 09:00:39 -0400 |
| commit | 7efd8f211b2dadcfcacefa70d409ca2408f56e41 (patch) | |
| tree | 2b65e4b76fd7442f5e83a1a4da5a30e3c10e0d29 /python/lowlevelil.py | |
| parent | c0fb84321d4e2fcb9e8de02c6b0faaf9d8365f37 (diff) | |
Fix index usage in `LowLevelILReg_ssa_partial.src`
Fix index usage in `LowLevelILSet_reg_ssa.src`
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 7a0c0a18..7d2585a9 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -1954,7 +1954,7 @@ class LowLevelILSet_reg_ssa(LowLevelILInstruction, SetReg, SSA): @property def src(self) -> LowLevelILInstruction: - return self.get_expr(1) + return self.get_expr(2) @property def operands(self) -> List[LowLevelILOperandType]: @@ -1970,7 +1970,7 @@ class LowLevelILReg_ssa_partial(LowLevelILInstruction, SetReg, SSA): @property def src(self) -> ILRegister: - return self.get_reg(1) + return self.get_reg(2) @property def operands(self) -> List[LowLevelILOperandType]: |
