From: Julian Seward Date: Mon, 7 Jan 2013 11:17:43 +0000 (+0000) Subject: Remove unused function. X-Git-Tag: svn/VALGRIND_3_9_0^2~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=588fbe976800ef58f361534dc744b78a1d95e00e;p=thirdparty%2Fvalgrind.git Remove unused function. git-svn-id: svn://svn.valgrind.org/vex/trunk@2628 --- diff --git a/VEX/priv/ir_opt.c b/VEX/priv/ir_opt.c index 70262ea713..89db9ea380 100644 --- a/VEX/priv/ir_opt.c +++ b/VEX/priv/ir_opt.c @@ -1151,14 +1151,6 @@ static Bool isOnesU32 ( IRExpr* e ) && 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 ) {