mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Pull out the stops.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34703 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
80f8481ef0
commit
012d50b851
@ -198,13 +198,11 @@ Constant *llvm::ConstantFoldCastInstruction(unsigned opc, const Constant *V,
|
||||
return 0; // Other pointer types cannot be casted
|
||||
case Instruction::UIToFP:
|
||||
if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
|
||||
if (CI->getType()->getBitWidth() <= 64)
|
||||
return ConstantFP::get(DestTy, CI->getValue().roundToDouble());
|
||||
return ConstantFP::get(DestTy, CI->getValue().roundToDouble());
|
||||
return 0;
|
||||
case Instruction::SIToFP:
|
||||
if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
|
||||
if (CI->getType()->getBitWidth() <= 64)
|
||||
return ConstantFP::get(DestTy, CI->getValue().signedRoundToDouble());
|
||||
return ConstantFP::get(DestTy, CI->getValue().signedRoundToDouble());
|
||||
return 0;
|
||||
case Instruction::ZExt:
|
||||
if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user