[llvm-commits] [llvm] r77624 - in /llvm/trunk: include/llvm/ADT/Twine.h lib/Support/Twine.cpp

Sebastian Redl sebastian.redl at getdesigned.at
Thu Jul 30 15:19:07 PDT 2009


Jakob Stoklund Olesen wrote:
> On 30/07/2009, at 23.15, Daniel Dunbar wrote:
>
>   
>> Author: ddunbar
>> Date: Thu Jul 30 16:15:14 2009
>> New Revision: 77624
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=77624&view=rev
>> Log:
>> Twine: Directly support int, long, and long long types.
>> - This should resolve Cygwin gcc ambiguities.
>>     
>
>   
>> +    explicit Twine(const unsigned long long &Val)
>> +      : LHS(&Val), LHSKind(DecULLKind), RHSKind(EmptyKind) {
>>     
>
> I don't think MSVC supports "long long", it's a C99 / GNU thing. Take  
> a look at Support/DataTypes.h.
>   
It does since 7.1 (.Net 2003). I don't think we support any older versions.

Sebastian



More information about the llvm-commits mailing list