|
From: <sv...@va...> - 2012-04-14 16:22:33
|
florian 2012-04-14 17:22:26 +0100 (Sat, 14 Apr 2012)
New Revision: 2284
Log:
No idea what happened here. Fixed as obvious.
Modified files:
branches/TCHAIN/priv/host_s390_defs.c
Modified: branches/TCHAIN/priv/host_s390_defs.c (+1 -1)
===================================================================
--- branches/TCHAIN/priv/host_s390_defs.c 2012-04-14 00:03:45 -23:00 (rev 2283)
+++ branches/TCHAIN/priv/host_s390_defs.c 2012-04-14 17:22:26 +01:00 (rev 2284)
@@ -7864,7 +7864,7 @@
*/
UChar *p = place_to_unchain;
- if (p[0] == 0xc0 && p[1] == (0x04 | S390_REGNO_TCHAIN_SCRATCH)) {
+ if (p[0] == 0xc0 && p[1] == ((S390_CC_ALWAYS << 4) | 0x04)) {
/* Looks like the short form */
Int num_hw = *(Int *)&p[2];
Int delta = 2 *num_hw;
|