|
From: <sv...@va...> - 2014-07-16 20:29:46
|
Author: florian
Date: Wed Jul 16 20:29:38 2014
New Revision: 2903
Log:
Comment out an unsed function to avoid a compiler warning.
Modified:
trunk/priv/ir_opt.c
Modified: trunk/priv/ir_opt.c
==============================================================================
--- trunk/priv/ir_opt.c (original)
+++ trunk/priv/ir_opt.c Wed Jul 16 20:29:38 2014
@@ -1178,13 +1178,16 @@
&& e->Iex.Const.con->Ico.U32 == 0);
}
-/* Is this literally IRExpr_Const(IRConst_U64(0)) ? */
+/* Is this literally IRExpr_Const(IRConst_U64(0)) ?
+ Currently unused; commented out to avoid compiler warning */
+#if 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);
}
+#endif
/* Is this literally IRExpr_Const(IRConst_V128(0)) ? */
static Bool isZeroV128 ( IRExpr* e )
|