From: Anton Korobeynikov Date: Thu, 14 Jan 2010 20:22:45 +0000 (+0000) Subject: long long is 64 bits on msp430 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26d18c1e1888e1b612addae6524c7a476a394a2a;p=clang long long is 64 bits on msp430 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93451 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index ac13b95075..bba2c3ffc4 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -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;