|
From: <sv...@va...> - 2012-12-22 14:50:55
|
florian 2012-12-22 14:50:41 +0000 (Sat, 22 Dec 2012)
New Revision: 2612
Log:
s390: Fix a silly mistake causing an infinite loop.
Spotted by Maran Pakkirisamy (ma...@li...).
Modified files:
trunk/priv/guest_s390_toIR.c
Modified: trunk/priv/guest_s390_toIR.c (+1 -1)
===================================================================
--- trunk/priv/guest_s390_toIR.c 2012-12-22 02:28:25 +00:00 (rev 2611)
+++ trunk/priv/guest_s390_toIR.c 2012-12-22 14:50:41 +00:00 (rev 2612)
@@ -1677,7 +1677,7 @@
{
/* The VEX encodings for IRCmpDxxResult and IRCmpFxxResult are the
same. currently. */
- return convert_vex_dfpcc_to_s390(vex_cc);
+ return convert_vex_bfpcc_to_s390(vex_cc);
}
|