From 13ce3c81e57f19e678a1c8d53031acdb25c0d435 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Wed, 25 Jun 2014 11:59:24 +0000 Subject: [PATCH] Fix bogus-looking assertion. git-svn-id: svn://svn.valgrind.org/vex/trunk@2885 --- VEX/priv/guest_arm_toIR.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VEX/priv/guest_arm_toIR.c b/VEX/priv/guest_arm_toIR.c index 7ab367c0c2..dd9d155d44 100644 --- a/VEX/priv/guest_arm_toIR.c +++ b/VEX/priv/guest_arm_toIR.c @@ -7974,7 +7974,7 @@ static void math_INTERLEAVE_2 (/*OUT*/IRTemp* i0, /*OUT*/IRTemp* i1, /* The following assumes that the guest is little endian, and hence that the memory-side (interleaved) data is stored little-endianly. */ - vassert(i0 && *i1); + vassert(i0 && i1); /* This is pretty easy, since we have primitives directly to hand. */ if (laneszB == 4) { -- 2.47.2