[cfe-commits] r93451 - /cfe/trunk/lib/Basic/Targets.cpp
Anton Korobeynikov
asl at math.spbu.ru
Thu Jan 14 12:22:45 PST 2010
Author: asl
Date: Thu Jan 14 14:22:45 2010
New Revision: 93451
URL: http://llvm.org/viewvc/llvm-project?rev=93451&view=rev
Log:
long long is 64 bits on msp430
Modified:
cfe/trunk/lib/Basic/Targets.cpp
Modified: cfe/trunk/lib/Basic/Targets.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/Targets.cpp?rev=93451&r1=93450&r2=93451&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/Targets.cpp (original)
+++ cfe/trunk/lib/Basic/Targets.cpp Thu Jan 14 14:22:45 2010
@@ -1657,7 +1657,8 @@
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;
More information about the cfe-commits
mailing list