|
From: <sv...@va...> - 2012-04-20 02:50:35
|
florian 2012-04-20 03:50:28 +0100 (Fri, 20 Apr 2012)
New Revision: 2291
Log:
Minor non-functional tweak.
Modified files:
branches/TCHAIN/priv/host_s390_defs.c
Modified: branches/TCHAIN/priv/host_s390_defs.c (+2 -2)
===================================================================
--- branches/TCHAIN/priv/host_s390_defs.c 2012-04-20 03:18:31 +01:00 (rev 2290)
+++ branches/TCHAIN/priv/host_s390_defs.c 2012-04-20 03:50:28 +01:00 (rev 2291)
@@ -7849,9 +7849,9 @@
if (shortOK) {
p = s390_emit_BRCL(p, S390_CC_ALWAYS, delta); /* 6 bytes */
- /* Make sre that BRCL fits into the patchable part of an xdirect
+ /* Make sure that BRCL fits into the patchable part of an xdirect
code sequence */
- vassert(6 < s390_xdirect_patchable_len());
+ vassert(6 <= s390_xdirect_patchable_len());
/* Fill remaining bytes with 0x00 (invalid opcode) */
Int i;
|