diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-01-17 07:30:56 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-01-17 08:57:31 +0100 |
| commit | 5fcbef659dd5d27d2953e8f35ebe004655b3f183 (patch) | |
| tree | 79093188e4172955d310bff9f2c26998e5aac42f /test/analysis/data_flow.py | |
| parent | 04f2665bdc67dc350f469841c748542c70ea9747 (diff) | |
| download | miasm-5fcbef659dd5d27d2953e8f35ebe004655b3f183.tar.gz miasm-5fcbef659dd5d27d2953e8f35ebe004655b3f183.zip | |
Fix bad english
Diffstat (limited to 'test/analysis/data_flow.py')
| -rw-r--r-- | test/analysis/data_flow.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/analysis/data_flow.py b/test/analysis/data_flow.py index 8682119d..2d4e2275 100644 --- a/test/analysis/data_flow.py +++ b/test/analysis/data_flow.py @@ -217,7 +217,7 @@ for irb in [G5_EXP_IRB0, G5_EXP_IRB1, G5_EXP_IRB2, G5_EXP_IRB3, G5_EXP_IRB4, G5_EXP_IRB5]: G5_EXP_IRA.add_irblock(irb) -# graph 6 : Natural loop with dead variables symmetric affectation +# graph 6 : Natural loop with dead variables symmetric assignment # (a = b <-> b = a ) G6_IRA = IRA.new_ircfg() @@ -344,7 +344,7 @@ G9_EXP_IRB4 = gen_irblock(LBL4, [[], [ExprAssign(r, b)]]) for irb in [G9_EXP_IRB0, G9_EXP_IRB1, G9_EXP_IRB2, G9_EXP_IRB3, G9_EXP_IRB4]: G9_EXP_IRA.add_irblock(irb) -# graph 10 : Natural loop with alive variables symmetric affectation +# graph 10 : Natural loop with alive variables symmetric assignment # (a = b <-> b = a ) G10_IRA = IRA.new_ircfg() |