AMDGPU/GlobalISel: Remove unnecessary code
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 22 Jul 2019 13:05:25 +0000 (13:05 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 22 Jul 2019 13:05:25 +0000 (13:05 +0000)
The minnum/maxnum case are dead, and the cvt is handled by the
default.

llvm-svn: 366685

llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp

index 901a2ea..a68817d 100644 (file)
@@ -567,10 +567,6 @@ bool AMDGPUInstructionSelector::selectG_INTRINSIC(
   MachineInstr &I, CodeGenCoverage &CoverageInfo) const {
   unsigned IntrinsicID =  I.getOperand(I.getNumExplicitDefs()).getIntrinsicID();
   switch (IntrinsicID) {
-  case Intrinsic::maxnum:
-  case Intrinsic::minnum:
-  case Intrinsic::amdgcn_cvt_pkrtz:
-    return selectImpl(I, CoverageInfo);
   case Intrinsic::amdgcn_if_break: {
     MachineBasicBlock *BB = I.getParent();
     MachineFunction *MF = BB->getParent();