|
From: <sv...@va...> - 2013-01-07 11:17:54
|
sewardj 2013-01-07 11:17:43 +0000 (Mon, 07 Jan 2013)
New Revision: 2628
Log:
Remove unused function.
Modified files:
trunk/priv/ir_opt.c
Modified: trunk/priv/ir_opt.c (+0 -8)
===================================================================
--- trunk/priv/ir_opt.c 2013-01-03 23:34:18 +00:00 (rev 2627)
+++ trunk/priv/ir_opt.c 2013-01-07 11:17:43 +00:00 (rev 2628)
@@ -1151,14 +1151,6 @@
&& e->Iex.Const.con->Ico.U32 == 0xFFFFFFFF );
}
-/* Is this literally IRExpr_Const(IRConst_U64(0)) ? */
-static Bool isZeroU64 ( IRExpr* e )
-{
- return toBool( e->tag == Iex_Const
- && e->Iex.Const.con->tag == Ico_U64
- && e->Iex.Const.con->Ico.U64 == 0);
-}
-
/* Is this an integer constant with value 0 ? */
static Bool isZeroU ( IRExpr* e )
{
|