]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
ir_defs.c: Iop_MAddF32 and Iop_MSubF32 are no (longer) s390 specific.
authorMark Wielaard <mark@klomp.org>
Thu, 10 Sep 2020 10:30:11 +0000 (12:30 +0200)
committerMark Wielaard <mark@klomp.org>
Wed, 23 Sep 2020 10:51:27 +0000 (12:51 +0200)
VEX/priv/ir_defs.c

index 176ca9b286730bec0dd502ea526758fca915154d..1359abb3f214a0a3f4bdedb70a265c15fb9e66ae 100644 (file)
@@ -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);