]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Remove unused IRops Iop_SqrtF64r32 and Iop_CalcFPRF.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 21 Aug 2012 22:15:19 +0000 (22:15 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 21 Aug 2012 22:15:19 +0000 (22:15 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@2474

VEX/priv/ir_defs.c
VEX/pub/libvex_ir.h

index 94ffddc4f22fe91482b09f078116473a3ee849a3..f02523663674bd1eb53a07f0c13bf6d74c402a0f 100644 (file)
@@ -330,7 +330,6 @@ void ppIROp ( IROp op )
       case Iop_RoundF64toF64_ZERO: vex_printf("RoundF64toF64_ZERO"); return;
 
       case Iop_TruncF64asF32: vex_printf("TruncF64asF32"); return;
-      case Iop_CalcFPRF:      vex_printf("CalcFPRF"); return;
 
       case Iop_QAdd32S: vex_printf("QAdd32S"); return;
       case Iop_QSub32S: vex_printf("QSub32S"); return; 
@@ -2388,7 +2387,6 @@ void typeOfPrimop ( IROp op,
          UNARY(Ity_F32, Ity_F32);
 
       case Iop_SqrtF64:
-      case Iop_SqrtF64r32:
          BINARY(ity_RMode,Ity_F64, Ity_F64);
 
       case Iop_SqrtF32:
@@ -2453,8 +2451,6 @@ void typeOfPrimop ( IROp op,
          UNARY(Ity_F64, Ity_F64);
       case Iop_RoundF64toF32:
          BINARY(ity_RMode,Ity_F64, Ity_F64);
-      case Iop_CalcFPRF:
-         UNARY(Ity_F64, Ity_I32);
       case Iop_TruncF64asF32:
          UNARY(Ity_F64, Ity_F32);
 
index 00f895f2ed6ed26b57ead0c413a97298a99efd87..c6d4689bec4aa9e83f83d40e3d566c738c9d4841 100644 (file)
@@ -561,7 +561,7 @@ typedef
 
       /* Unary operations, with rounding. */
       /* :: IRRoundingMode(I32) x F64 -> F64 */
-      Iop_SqrtF64, Iop_SqrtF64r32,
+      Iop_SqrtF64,
 
       /* :: IRRoundingMode(I32) x F32 -> F32 */
       Iop_SqrtF32,
@@ -737,10 +737,6 @@ typedef
       /* NB: pretty much the same as Iop_F64toF32, except no change 
          of type. */
 
-      /* :: F64 -> I32 */
-      Iop_CalcFPRF, /* Calc 5 fpscr[FPRF] bits (Class, <, =, >, Unord)
-                       from FP result */
-
       /* ------------------ 32-bit SIMD Integer ------------------ */
 
       /* 32x1 saturating add/sub (ok, well, not really SIMD :) */