From: Mark Wielaard Date: Thu, 10 Sep 2020 10:30:11 +0000 (+0200) Subject: ir_defs.c: Iop_MAddF32 and Iop_MSubF32 are no (longer) s390 specific. X-Git-Tag: VALGRIND_3_17_0~150 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=686f2a77477ddc2c6a1aac98be8457f06853f77f;p=thirdparty%2Fvalgrind.git ir_defs.c: Iop_MAddF32 and Iop_MSubF32 are no (longer) s390 specific. --- diff --git a/VEX/priv/ir_defs.c b/VEX/priv/ir_defs.c index 176ca9b286..1359abb3f2 100644 --- a/VEX/priv/ir_defs.c +++ b/VEX/priv/ir_defs.c @@ -327,9 +327,8 @@ void ppIROp ( IROp op ) case Iop_F128toI128S: vex_printf("F128toI128"); return; case Iop_RndF128: vex_printf("RndF128"); return; - /* s390 specific */ - case Iop_MAddF32: vex_printf("s390_MAddF32"); return; - case Iop_MSubF32: vex_printf("s390_MSubF32"); return; + case Iop_MAddF32: vex_printf("MAddF32"); return; + case Iop_MSubF32: vex_printf("MSubF32"); return; case Iop_ScaleF64: vex_printf("ScaleF64"); return; case Iop_AtanF64: vex_printf("AtanF64"); return; @@ -3734,7 +3733,6 @@ void typeOfPrimop ( IROp op, case Iop_QDMull16Sx4: case Iop_QDMull32Sx2: BINARY(Ity_I64, Ity_I64, Ity_V128); - /* s390 specific */ case Iop_MAddF32: case Iop_MSubF32: QUATERNARY(ity_RMode,Ity_F32,Ity_F32,Ity_F32, Ity_F32);