From 9c4c548e372311f6d685647b3cfed35e1579ad54 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Thu, 20 Sep 2018 07:53:13 +0200 Subject: Expresion: use ExprAssign instead of ExprAff ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss) --- test/expression/simplifications.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/expression/simplifications.py') diff --git a/test/expression/simplifications.py b/test/expression/simplifications.py index 046c948e..68dc0437 100644 --- a/test/expression/simplifications.py +++ b/test/expression/simplifications.py @@ -575,9 +575,9 @@ for test, res in match_tests: get_tests = [ - (ExprAff(ExprMem(a, 32), ExprMem(b, 32)).get_r(True), set([a, b, ExprMem(b, 32)])), - (ExprAff(ExprMem(a, 32), ExprMem(b, 32)).get_w(), set([ExprMem(a, 32)])), - (ExprAff(ExprMem(ExprMem(a, 32), 32), ExprMem(b, 32)) + (ExprAssign(ExprMem(a, 32), ExprMem(b, 32)).get_r(True), set([a, b, ExprMem(b, 32)])), + (ExprAssign(ExprMem(a, 32), ExprMem(b, 32)).get_w(), set([ExprMem(a, 32)])), + (ExprAssign(ExprMem(ExprMem(a, 32), 32), ExprMem(b, 32)) .get_r(True), set([a, b, ExprMem(b, 32), ExprMem(a, 32)])), ] -- cgit 1.4.1