|
From: <sv...@va...> - 2011-05-03 11:08:48
|
Author: sewardj
Date: 2011-05-03 12:08:39 +0100 (Tue, 03 May 2011)
New Revision: 2142
Log:
Fix a bogus assertion observed by Florian Krohm.
Modified:
trunk/priv/guest_arm_toIR.c
Modified: trunk/priv/guest_arm_toIR.c
===================================================================
--- trunk/priv/guest_arm_toIR.c 2011-05-03 07:51:49 UTC (rev 2141)
+++ trunk/priv/guest_arm_toIR.c 2011-05-03 11:08:39 UTC (rev 2142)
@@ -14027,7 +14027,7 @@
assert here. */
vassert(dres.whatNext == Dis_Continue);
vassert(irsb->next == NULL);
- vassert(irsb->jumpkind = Ijk_Boring);
+ vassert(irsb->jumpkind == Ijk_Boring);
/* If r15 is unconditionally written, terminate the block by
jumping to it. If it's conditionally written, still
terminate the block (a shame, but we can't do side exits to
@@ -17864,7 +17864,7 @@
assert here. */
vassert(dres.whatNext == Dis_Continue);
vassert(irsb->next == NULL);
- vassert(irsb->jumpkind = Ijk_Boring);
+ vassert(irsb->jumpkind == Ijk_Boring);
/* If r15 is unconditionally written, terminate the block by
jumping to it. If it's conditionally written, still
terminate the block (a shame, but we can't do side exits to
|