From: Florian Krohm Date: Wed, 16 Jul 2014 20:29:38 +0000 (+0000) Subject: Comment out an unsed function to avoid a compiler warning. X-Git-Tag: svn/VALGRIND_3_10_1^2~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=220b8e6cbc55975ae156aab8fcb022aa487f9a4f;p=thirdparty%2Fvalgrind.git Comment out an unsed function to avoid a compiler warning. git-svn-id: svn://svn.valgrind.org/vex/trunk@2903 --- diff --git a/VEX/priv/ir_opt.c b/VEX/priv/ir_opt.c index ded301882d..d1fe9ad20c 100644 --- a/VEX/priv/ir_opt.c +++ b/VEX/priv/ir_opt.c @@ -1178,13 +1178,16 @@ static Bool isZeroU32 ( IRExpr* e ) && 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 )