diff options
| author | Camille Mougey <commial@gmail.com> | 2018-02-09 15:25:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-09 15:25:25 +0100 |
| commit | c2e52be18ddd2eeb86b413e851a3ade0ceeca1dc (patch) | |
| tree | ac0d8a4cc054b283f524846757344e556325a912 /example/ida/ctype_propagation.py | |
| parent | 47811fe5a56c8071ab5064e1f84ca64389941eec (diff) | |
| parent | 00a5a16d47a32f1a483ba625fa9bd5c6eb460542 (diff) | |
| download | miasm-c2e52be18ddd2eeb86b413e851a3ade0ceeca1dc.tar.gz miasm-c2e52be18ddd2eeb86b413e851a3ade0ceeca1dc.zip | |
Merge pull request #673 from serpilliere/fix_irs
irs => assignblks
Diffstat (limited to 'example/ida/ctype_propagation.py')
| -rw-r--r-- | example/ida/ctype_propagation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ida/ctype_propagation.py b/example/ida/ctype_propagation.py index 8c64c6d2..54b23516 100644 --- a/example/ida/ctype_propagation.py +++ b/example/ida/ctype_propagation.py @@ -114,7 +114,7 @@ class SymbExecCTypeFix(SymbExecCType): """ offset2cmt = {} - for index, assignblk in enumerate(irb.irs): + for index, assignblk in enumerate(irb): if set(assignblk) == set([self.ir_arch.IRDst, self.ir_arch.pc]): # Don't display on jxx continue |