]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Remove unused function.
authorJulian Seward <jseward@acm.org>
Mon, 7 Jan 2013 11:17:43 +0000 (11:17 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 7 Jan 2013 11:17:43 +0000 (11:17 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@2628

VEX/priv/ir_opt.c

index 70262ea71369bf45e129c1c5e94d1dcf364bda06..89db9ea38050c5a683635bae074f52d6de3858cc 100644 (file)
@@ -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 )
 {