From: Ivo Raisr Date: Fri, 24 Mar 2017 13:46:15 +0000 (+0000) Subject: Use consistently chase1() in MSVC specific transformation hacks. X-Git-Tag: svn/VALGRIND_3_13_0^2~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e7bdd4e2e18ce6c3961b6a2e10de1935a970b20;p=thirdparty%2Fvalgrind.git Use consistently chase1() in MSVC specific transformation hacks. This code is experimental and not used by default but should be self-consistent. n-i-bz git-svn-id: svn://svn.valgrind.org/vex/trunk@3329 --- diff --git a/VEX/priv/ir_opt.c b/VEX/priv/ir_opt.c index 914dbffca6..12368a442b 100644 --- a/VEX/priv/ir_opt.c +++ b/VEX/priv/ir_opt.c @@ -6007,7 +6007,7 @@ static void print_flat_expr ( IRExpr** env, IRExpr* e ) case Iex_RdTmp: ppIRTemp(e->Iex.RdTmp.tmp); vex_printf("="); - print_flat_expr(env, chase(env, e)); + print_flat_expr(env, chase1(env, e)); break; case Iex_Const: case Iex_CCall: