Removed UINT_TO_FP and SINT_TO_FP from ISel outright.
authorJim Laskey <jlaskey@mac.com>
Wed, 17 Aug 2005 01:14:38 +0000 (01:14 +0000)
committerJim Laskey <jlaskey@mac.com>
Wed, 17 Aug 2005 01:14:38 +0000 (01:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22818 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCISelPattern.cpp

index d2b4ad421ed6990e61eba18821d4ef720fc341ec..e0255dfee0853ba32aacc346a61dc6fc9580c7cf 100644 (file)
@@ -1814,11 +1814,6 @@ unsigned ISel::SelectExpr(SDOperand N, bool Recording) {
     Tmp1 = SelectExpr(N.getOperand(0));
     BuildMI(BB, PPC::FMR, 1, Result).addReg(Tmp1);
     return Result;
-
-  case ISD::UINT_TO_FP:
-  case ISD::SINT_TO_FP:
-    assert (0 && "int to float implemented in legalizer");
-    return Result;
   }
   return 0;
 }