|
From: <sv...@va...> - 2012-08-16 00:11:30
|
florian 2012-08-16 01:11:20 +0100 (Thu, 16 Aug 2012)
New Revision: 2469
Log:
Fix a mixup. This never caused a problem because both fields have
the same offset in the enclosing struct.
Modified files:
trunk/priv/ir_defs.c
Modified: trunk/priv/ir_defs.c (+1 -1)
===================================================================
--- trunk/priv/ir_defs.c 2012-08-14 23:29:01 +01:00 (rev 2468)
+++ trunk/priv/ir_defs.c 2012-08-16 01:11:20 +01:00 (rev 2469)
@@ -3459,7 +3459,7 @@
}
case Iex_Unop:
tcExpr(bb,stmt, expr->Iex.Unop.arg, gWordTy );
- typeOfPrimop(expr->Iex.Binop.op,
+ typeOfPrimop(expr->Iex.Unop.op,
&t_dst, &t_arg1, &t_arg2, &t_arg3, &t_arg4);
if (t_arg1 == Ity_INVALID || t_arg2 != Ity_INVALID
|| t_arg3 != Ity_INVALID || t_arg4 != Ity_INVALID)
|