Hi Anton, Have you tried running the Preprocessor tests after making this change? I believe init.c and stdint.c tests will need updating.
-Ken > -----Original Message----- > From: [email protected] > [mailto:[email protected]] On Behalf Of Anton > Korobeynikov > Sent: Thursday, January 14, 2010 3:23 PM > To: [email protected] > Subject: [cfe-commits] r93451 - /cfe/trunk/lib/Basic/Targets.cpp > > 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/Target > s.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; > > > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits > _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
