@@ -935,43 +935,6 @@ class CmpInst : public Instruction {
935935 return isUnsigned (getPredicate ());
936936 }
937937
938- // / For example, ULT->SLT, ULE->SLE, UGT->SGT, UGE->SGE, SLT->Failed assert
939- // / @returns the signed version of the unsigned predicate pred.
940- // / return the signed version of a predicate
941- static Predicate getSignedPredicate (Predicate pred);
942-
943- // / For example, ULT->SLT, ULE->SLE, UGT->SGT, UGE->SGE, SLT->Failed assert
944- // / @returns the signed version of the predicate for this instruction (which
945- // / has to be an unsigned predicate).
946- // / return the signed version of a predicate
947- Predicate getSignedPredicate () {
948- return getSignedPredicate (getPredicate ());
949- }
950-
951- // / For example, SLT->ULT, SLE->ULE, SGT->UGT, SGE->UGE, ULT->Failed assert
952- // / @returns the unsigned version of the signed predicate pred.
953- static Predicate getUnsignedPredicate (Predicate pred);
954-
955- // / For example, SLT->ULT, SLE->ULE, SGT->UGT, SGE->UGE, ULT->Failed assert
956- // / @returns the unsigned version of the predicate for this instruction (which
957- // / has to be an signed predicate).
958- // / return the unsigned version of a predicate
959- Predicate getUnsignedPredicate () {
960- return getUnsignedPredicate (getPredicate ());
961- }
962-
963- // / For example, SLT->ULT, ULT->SLT, SLE->ULE, ULE->SLE, EQ->Failed assert
964- // / @returns the unsigned version of the signed predicate pred or
965- // / the signed version of the signed predicate pred.
966- static Predicate getFlippedSignednessPredicate (Predicate pred);
967-
968- // / For example, SLT->ULT, ULT->SLT, SLE->ULE, ULE->SLE, EQ->Failed assert
969- // / @returns the unsigned version of the signed predicate pred or
970- // / the signed version of the signed predicate pred.
971- Predicate getFlippedSignednessPredicate () {
972- return getFlippedSignednessPredicate (getPredicate ());
973- }
974-
975938 // / This is just a convenience.
976939 // / Determine if this is true when both operands are the same.
977940 bool isTrueWhenEqual () const {
0 commit comments