|
From: <sv...@va...> - 2014-06-25 11:59:34
|
Author: sewardj
Date: Wed Jun 25 11:59:24 2014
New Revision: 2885
Log:
Fix bogus-looking assertion.
Modified:
trunk/priv/guest_arm_toIR.c
Modified: trunk/priv/guest_arm_toIR.c
==============================================================================
--- trunk/priv/guest_arm_toIR.c (original)
+++ trunk/priv/guest_arm_toIR.c Wed Jun 25 11:59:24 2014
@@ -7974,7 +7974,7 @@
/* 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) {
|