mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Revert 75798 to fix llvm build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75805 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
206613b289
commit
87d1f47cb6
@ -255,6 +255,20 @@ ConstantInt *ConstantInt::get(const APInt& V) {
|
||||
// ConstantFP
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
|
||||
if (Ty == Type::FloatTy)
|
||||
return &APFloat::IEEEsingle;
|
||||
if (Ty == Type::DoubleTy)
|
||||
return &APFloat::IEEEdouble;
|
||||
if (Ty == Type::X86_FP80Ty)
|
||||
return &APFloat::x87DoubleExtended;
|
||||
else if (Ty == Type::FP128Ty)
|
||||
return &APFloat::IEEEquad;
|
||||
|
||||
assert(Ty == Type::PPC_FP128Ty && "Unknown FP format");
|
||||
return &APFloat::PPCDoubleDouble;
|
||||
}
|
||||
|
||||
ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
|
||||
: Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
|
||||
assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
|
||||
|
Loading…
Reference in New Issue
Block a user