forked from OSchip/llvm-project
Initialize default double width and alignment
llvm-svn: 49899
This commit is contained in:
parent
26ed25253e
commit
c00bed3871
|
@ -24,6 +24,8 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) {
|
|||
// Set defaults. These should be overridden by concrete targets as needed.
|
||||
CharIsSigned = true;
|
||||
WCharWidth = WCharAlign = 32;
|
||||
DoubleWidth = 64;
|
||||
DoubleAlign = 32;
|
||||
FloatFormat = &llvm::APFloat::IEEEsingle;
|
||||
DoubleFormat = &llvm::APFloat::IEEEdouble;
|
||||
LongDoubleFormat = &llvm::APFloat::IEEEdouble;
|
||||
|
|
Loading…
Reference in New Issue