git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50887 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-05-09 05:50:02 +00:00
Родитель 8059e997ee
Коммит ec10f58865
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -39,6 +39,7 @@ protected:
unsigned IntWidth, IntAlign;
unsigned DoubleWidth, DoubleAlign;
unsigned LongWidth, LongAlign;
unsigned LongLongWidth, LongLongAlign;
const llvm::fltSemantics *FloatFormat, *DoubleFormat, *LongDoubleFormat;
@ -93,8 +94,8 @@ public:
/// getLongLongWidth/Align - Return the size of 'signed long long' and
/// 'unsigned long long' for this target, in bits.
unsigned getLongLongWidth() const { return 64; } // FIXME
unsigned getLongLongAlign() const { return 64; } // FIXME
unsigned getLongLongWidth() const { return LongLongWidth; }
unsigned getLongLongAlign() const { return LongLongAlign; }
/// getWcharWidth/Align - Return the size of 'wchar_t' for this target, in
/// bits.

Просмотреть файл

@ -24,8 +24,9 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) {
// Set defaults. These should be overridden by concrete targets as needed.
CharIsSigned = true;
WCharWidth = WCharAlign = 32;
LongWidth = LongAlign = 32;
IntWidth = IntAlign = 32;
LongWidth = LongAlign = 32;
LongLongWidth = LongLongAlign = 64;
DoubleWidth = 64;
DoubleAlign = 32;
FloatFormat = &llvm::APFloat::IEEEsingle;