diff options
| author | Camille Mougey <commial@gmail.com> | 2019-01-17 12:37:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-17 12:37:18 +0100 |
| commit | a891c628021c6e9e1841c5dd55075f198d68a57c (patch) | |
| tree | 79093188e4172955d310bff9f2c26998e5aac42f /miasm2/analysis/data_flow.py | |
| parent | 04f2665bdc67dc350f469841c748542c70ea9747 (diff) | |
| parent | 5fcbef659dd5d27d2953e8f35ebe004655b3f183 (diff) | |
| download | miasm-a891c628021c6e9e1841c5dd55075f198d68a57c.tar.gz miasm-a891c628021c6e9e1841c5dd55075f198d68a57c.zip | |
Merge pull request #944 from serpilliere/fix_assignment
Fix bad english
Diffstat (limited to 'miasm2/analysis/data_flow.py')
| -rw-r--r-- | miasm2/analysis/data_flow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/data_flow.py b/miasm2/analysis/data_flow.py index b90bdaf9..799b17d0 100644 --- a/miasm2/analysis/data_flow.py +++ b/miasm2/analysis/data_flow.py @@ -243,7 +243,7 @@ def dead_simp_useful_assignblks(irarch, defuse, reaching_defs): def dead_simp(irarch, ircfg): """ - Remove useless affectations. + Remove useless assignments. This function is used to analyse relation of a * complete function * This means the blocks under study represent a solid full function graph. |