[llvm] 2cbdf7e - [SelectionDAG] Remove unused SDTConvertOp

Jessica Clarke via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 26 04:49:31 PDT 2021


Author: Jessica Clarke
Date: 2021-08-26T12:48:17+01:00
New Revision: 2cbdf7e13171d32e3094285728097d9fd8c80397

URL: https://github.com/llvm/llvm-project/commit/2cbdf7e13171d32e3094285728097d9fd8c80397
DIFF: https://github.com/llvm/llvm-project/commit/2cbdf7e13171d32e3094285728097d9fd8c80397.diff

LOG: [SelectionDAG] Remove unused SDTConvertOp

This was used by CONVERT_RNDSAT, which was removed in def496c04b0d, so
the profile is now unused.

Reviewed By: xgupta

Differential Revision: https://reviews.llvm.org/D108508

Added: 
    

Modified: 
    llvm/include/llvm/Target/TargetSelectionDAG.td

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Target/TargetSelectionDAG.td b/llvm/include/llvm/Target/TargetSelectionDAG.td
index 4fb62f90bf9bb..77b4d664a78f3 100644
--- a/llvm/include/llvm/Target/TargetSelectionDAG.td
+++ b/llvm/include/llvm/Target/TargetSelectionDAG.td
@@ -297,10 +297,6 @@ def SDTAtomicLoad : SDTypeProfile<1, 1, [
   SDTCisInt<0>, SDTCisPtrTy<1>
 ]>;
 
-def SDTConvertOp : SDTypeProfile<1, 5, [ //cvtss, su, us, uu, ff, fs, fu, sf, su
-  SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>, SDTCisPtrTy<4>, SDTCisPtrTy<5>
-]>;
-
 class SDCallSeqStart<list<SDTypeConstraint> constraints> :
         SDTypeProfile<0, 2, constraints>;
 class SDCallSeqEnd<list<SDTypeConstraint> constraints> :


        


More information about the llvm-commits mailing list