|
From: <sv...@va...> - 2017-03-14 00:47:52
|
Author: iraisr
Date: Tue Mar 14 00:47:45 2017
New Revision: 3319
Log:
Fix type of t_inc to correct IRTemp.
No functional change.
n-i-bz
Modified:
trunk/priv/guest_x86_toIR.c
Modified: trunk/priv/guest_x86_toIR.c
==============================================================================
--- trunk/priv/guest_x86_toIR.c (original)
+++ trunk/priv/guest_x86_toIR.c Tue Mar 14 00:47:45 2017
@@ -3172,7 +3172,7 @@
/* Code shared by all the string ops */
static
-void dis_string_op_increment(Int sz, Int t_inc)
+void dis_string_op_increment(Int sz, IRTemp t_inc)
{
if (sz == 4 || sz == 2) {
assign( t_inc,
|