Make expansion of uint->fp cast assert out instead of infinitely recurse.
llvm-svn: 21275
This commit is contained in:
parent
60c23bd169
commit
0efd77eda7
@ -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!");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user