|
From: <sv...@va...> - 2017-03-24 13:46:24
|
Author: iraisr
Date: Fri Mar 24 13:46:15 2017
New Revision: 3329
Log:
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
Modified:
trunk/priv/ir_opt.c
Modified: trunk/priv/ir_opt.c
==============================================================================
--- trunk/priv/ir_opt.c (original)
+++ trunk/priv/ir_opt.c Fri Mar 24 13:46:15 2017
@@ -6007,7 +6007,7 @@
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:
|