diff options
| author | Ajax <commial@gmail.com> | 2018-07-12 09:45:14 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-07-12 09:45:14 +0200 |
| commit | 5fcecd3a58524e557f636c31eaaf80136a5cbd76 (patch) | |
| tree | f20c52777186d5da7e7a19b489ed93141b37c61f /example/disasm/full.py | |
| parent | c48a8ba7ed9110df962df94ab9db314b2873c6b2 (diff) | |
| download | miasm-5fcecd3a58524e557f636c31eaaf80136a5cbd76.tar.gz miasm-5fcecd3a58524e557f636c31eaaf80136a5cbd76.zip | |
Disasm/Full: fix inversion in output names
Diffstat (limited to 'example/disasm/full.py')
| -rw-r--r-- | example/disasm/full.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py index 9e1c422d..5658c2c2 100644 --- a/example/disasm/full.py +++ b/example/disasm/full.py @@ -227,9 +227,9 @@ if args.gen_ir: open('graph_defuse.dot', 'w').write(DiGraphDefUse(reachings).dot()) out = ircfg.dot() - open('graph_irflow.dot', 'w').write(out) - out = ircfg_a.dot() open('graph_irflow_raw.dot', 'w').write(out) + out = ircfg_a.dot() + open('graph_irflow.dot', 'w').write(out) if args.simplify > 1: |