|
From: <sv...@va...> - 2013-02-21 03:03:52
|
florian 2013-02-21 03:03:05 +0000 (Thu, 21 Feb 2013)
New Revision: 2685
Log:
s390: Fix a type mixup found by BEAM.
Modified files:
trunk/priv/host_s390_isel.c
Modified: trunk/priv/host_s390_isel.c (+1 -1)
===================================================================
--- trunk/priv/host_s390_isel.c 2013-02-14 14:27:12 +00:00 (rev 2684)
+++ trunk/priv/host_s390_isel.c 2013-02-21 03:03:05 +00:00 (rev 2685)
@@ -2460,7 +2460,7 @@
/* DFP arithmetic ops take rounding mode only when fpext is
installed. But, DFP quantize operation takes rm irrespective
of fpext facility . */
- if (s390_host_has_fpext || dfpop == Iop_QuantizeD128) {
+ if (s390_host_has_fpext || op == Iop_QuantizeD128) {
rounding_mode = get_dfp_rounding_mode(env, irrm);
} else {
set_dfp_rounding_mode_in_fpc(env, irrm);
|