From 588fbe976800ef58f361534dc744b78a1d95e00e Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 7 Jan 2013 11:17:43 +0000 Subject: [PATCH] Remove unused function. git-svn-id: svn://svn.valgrind.org/vex/trunk@2628 --- VEX/priv/ir_opt.c | 8 -------- 1 file changed, 8 deletions(-) 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 ) { -- 2.47.2