diff options
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() |