long long is 64 bits on msp430

llvm-svn: 93451
This commit is contained in:
Anton Korobeynikov 2010-01-14 20:22:45 +00:00
parent 105682dc96
commit 6bedbf1039
1 changed files with 2 additions and 1 deletions

View File

@ -1657,7 +1657,8 @@ namespace {
MSP430TargetInfo(const std::string& triple) : TargetInfo(triple) {
TLSSupported = false;
IntWidth = 16;
LongWidth = LongLongWidth = 32;
LongWidth = 32;
LongLongWidth = 64;
PointerWidth = 16;
IntAlign = 8;
LongAlign = LongLongAlign = 8;