diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-02-25 14:14:07 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-02-26 15:53:53 +0100 |
| commit | 35ead949d8c0d9788ddc602d9dc206f416adcd7b (patch) | |
| tree | c96acb1e57e04c4bfca4901f4fdd349e211e0acc /test/core/sembuilder.py | |
| parent | 55cc4ec75424a841748b62e230a1abb01b258014 (diff) | |
| download | miasm-35ead949d8c0d9788ddc602d9dc206f416adcd7b.tar.gz miasm-35ead949d8c0d9788ddc602d9dc206f416adcd7b.zip | |
AssignBlock
Diffstat (limited to 'test/core/sembuilder.py')
| -rw-r--r-- | test/core/sembuilder.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/core/sembuilder.py b/test/core/sembuilder.py index 15fa67a4..3a575727 100644 --- a/test/core/sembuilder.py +++ b/test/core/sembuilder.py @@ -57,5 +57,9 @@ for statement in res[0]: print statement print "[+] Blocks:" -for block in res[1]: - print block +for irb in res[1]: + print irb.label + for exprs in irb.irs: + for expr in exprs: + print expr + print |