diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-02-15 23:28:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-15 23:28:36 +0100 |
| commit | e933c0c31742ddb9dcfd9b46d93fe2a47553af5e (patch) | |
| tree | a5b6ac1d9f3ecf6378d2ae33661b0433f5736dc6 /test/analysis/data_flow.py | |
| parent | 092d0bfaac18ffe683a8ef3a1dedc5dba80e7688 (diff) | |
| parent | 2420df074cd2f3bb8b1e343a5bce6b83fffa9d80 (diff) | |
| download | miasm-e933c0c31742ddb9dcfd9b46d93fe2a47553af5e.tar.gz miasm-e933c0c31742ddb9dcfd9b46d93fe2a47553af5e.zip | |
Merge pull request #683 from commial/refactor/remove-default-exprmem-size
Refactor/remove default exprmem size
Diffstat (limited to 'test/analysis/data_flow.py')
| -rw-r--r-- | test/analysis/data_flow.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/analysis/data_flow.py b/test/analysis/data_flow.py index dff88470..d0a85e13 100644 --- a/test/analysis/data_flow.py +++ b/test/analysis/data_flow.py @@ -553,7 +553,7 @@ G17_IRB0 = gen_irblock(LBL0, [[ExprAff(a, a*b), ExprAff(b, a), ExprAff(c, b)], - [ExprAff(ExprMem(d+CST1), a), + [ExprAff(ExprMem(d+CST1, 32), a), ExprAff(a, b), ExprAff(b, c), ExprAff(c, CST1)], @@ -562,7 +562,7 @@ G17_IRB0 = gen_irblock(LBL0, [[ExprAff(a, a*b), ExprAff(b, a), ExprAff(c, b)], - [ExprAff(ExprMem(d+CST2), a), + [ExprAff(ExprMem(d+CST2, 32), a), ExprAff(a, b), ExprAff(b, c), ExprAff(c, CST1)], @@ -593,7 +593,7 @@ G17_IRB0 = gen_irblock(LBL0, [[ExprAff(a, a*b), ExprAff(b, a), ExprAff(c, b)], - [ExprAff(ExprMem(d), a+b+c)], + [ExprAff(ExprMem(d, 32), a+b+c)], ]) @@ -610,11 +610,11 @@ G17_EXP_IRB0 = gen_irblock(LBL0, [[], [ExprAff(a, CST1)], - [ExprAff(ExprMem(d+CST1), a)], + [ExprAff(ExprMem(d+CST1, 32), a)], [ExprAff(a, CST1)], - [ExprAff(ExprMem(d+CST2), a)], + [ExprAff(ExprMem(d+CST2, 32), a)], [ExprAff(a, CST2)], |