From 2cbdf7e13171d32e3094285728097d9fd8c80397 Mon Sep 17 00:00:00 2001 From: Jessica Clarke Date: Thu, 26 Aug 2021 12:48:14 +0100 Subject: [PATCH] [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 --- llvm/include/llvm/Target/TargetSelectionDAG.td | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llvm/include/llvm/Target/TargetSelectionDAG.td b/llvm/include/llvm/Target/TargetSelectionDAG.td index 4fb62f9..77b4d66 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 constraints> : SDTypeProfile<0, 2, constraints>; class SDCallSeqEnd constraints> : -- 2.7.4