From a033b4d8eb560e88914b376c17f2513730c6e3b4 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 17 Aug 2005 01:14:38 +0000 Subject: [PATCH] Removed UINT_TO_FP and SINT_TO_FP from ISel outright. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22818 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCISelPattern.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/Target/PowerPC/PPCISelPattern.cpp b/lib/Target/PowerPC/PPCISelPattern.cpp index d2b4ad421ed..e0255dfee08 100644 --- a/lib/Target/PowerPC/PPCISelPattern.cpp +++ b/lib/Target/PowerPC/PPCISelPattern.cpp @@ -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; } -- 2.34.1