diff options
| author | Jim Laskey <jlaskey@mac.com> | 2005-08-17 01:14:38 +0000 | 
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2005-08-17 01:14:38 +0000 | 
| commit | 9828f26cf192beab797f6c09b72563af2e4658ac (patch) | |
| tree | 3f8973df8a9c839ffc4315225a526b05a2d29380 /llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp | |
| parent | 73370ba5fdd29af2489a1989106e2716f5a28624 (diff) | |
| download | bcm5719-llvm-9828f26cf192beab797f6c09b72563af2e4658ac.tar.gz bcm5719-llvm-9828f26cf192beab797f6c09b72563af2e4658ac.zip | |
Removed UINT_TO_FP and SINT_TO_FP from ISel outright.
llvm-svn: 22818
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp b/llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp index d2b4ad421ed..e0255dfee08 100644 --- a/llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp +++ b/llvm/lib/Target/PowerPC/PPC32ISelPattern.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;  } | 

