From: Chris Lattner Date: Wed, 13 Apr 2005 03:42:14 +0000 (+0000) Subject: Make expansion of uint->fp cast assert out instead of infinitely recurse. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ffe284c65137ac1d8e4421550bdc9979ed80e9ee;p=oota-llvm.git Make expansion of uint->fp cast assert out instead of infinitely recurse. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21275 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 01c88e1a574..1dceccaeccf 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -1820,7 +1820,7 @@ ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) { } else { // If this is unsigned, and not supported, first perform the conversion to // signed, then adjust the result if the sign bit is set. - SDOperand SignedConv = ExpandIntToFP(false, DestTy, Source); + SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source); assert(0 && "Unsigned casts not supported yet!"); }