]> granicus.if.org Git - clang/commitdiff
long long is 64 bits on msp430
authorAnton Korobeynikov <asl@math.spbu.ru>
Thu, 14 Jan 2010 20:22:45 +0000 (20:22 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Thu, 14 Jan 2010 20:22:45 +0000 (20:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93451 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/Targets.cpp

index ac13b950752fcd313c7c232da6f9f955d9a73040..bba2c3ffc41fd53425060be575b84ee56dd4f186 100644 (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;