commit | a033b4d8eb560e88914b376c17f2513730c6e3b4 | [log] [tgz] |
---|---|---|
author | Jim Laskey <jlaskey@mac.com> | Wed Aug 17 01:14:38 2005 +0000 |
committer | Jim Laskey <jlaskey@mac.com> | Wed Aug 17 01:14:38 2005 +0000 |
tree | df4440b17305b4a41a2d73a0ac6105239faf9a81 | |
parent | 035b8abdab6191d54e7ac51dcd5117cb7f430fc0 [diff] |
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
diff --git a/lib/Target/PowerPC/PPCISelPattern.cpp b/lib/Target/PowerPC/PPCISelPattern.cpp index d2b4ad42..e0255df 100644 --- a/lib/Target/PowerPC/PPCISelPattern.cpp +++ b/lib/Target/PowerPC/PPCISelPattern.cpp
@@ -1814,11 +1814,6 @@ 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; }