|
From: <sv...@va...> - 2012-09-07 21:18:52
|
florian 2012-09-07 22:18:42 +0100 (Fri, 07 Sep 2012)
New Revision: 2518
Log:
s390: Fix another mixup. Did not cause problems due to same
field offset.
Modified files:
trunk/priv/host_s390_defs.c
Modified: trunk/priv/host_s390_defs.c (+1 -1)
===================================================================
--- trunk/priv/host_s390_defs.c 2012-09-07 16:00:53 +01:00 (rev 2517)
+++ trunk/priv/host_s390_defs.c 2012-09-07 22:18:42 +01:00 (rev 2518)
@@ -7558,7 +7558,7 @@
UInt r1 = hregNumber(insn->variant.bfp128_unop.dst_hi);
UInt r2_hi = hregNumber(insn->variant.bfp128_unop.op_hi);
UInt r2_lo = hregNumber(insn->variant.bfp128_unop.op_lo);
- s390_round_t rounding_mode = insn->variant.bfp_binop.rounding_mode;
+ s390_round_t rounding_mode = insn->variant.bfp128_unop.rounding_mode;
/* Paranoia */
vassert(insn->size != 16);
|