From: Chris Lattner Date: Sun, 10 Feb 2008 21:12:45 +0000 (+0000) Subject: long is 32-bit is on win32. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9880ba94ca625952eeccd486bb22d0a659cbe00f;p=clang long is 32-bit is on win32. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46935 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Lex/Preprocessor.cpp b/Lex/Preprocessor.cpp index 141536a1be..85a2c47c6c 100644 --- a/Lex/Preprocessor.cpp +++ b/Lex/Preprocessor.cpp @@ -434,7 +434,7 @@ static void InitializePredefinedMacros(Preprocessor &PP, DefineBuiltinMacro(Buf, "__int8=char"); DefineBuiltinMacro(Buf, "__int16=short"); DefineBuiltinMacro(Buf, "__int32=int"); - DefineBuiltinMacro(Buf, "__int64=long"); + DefineBuiltinMacro(Buf, "__int64=long long"); } // FIXME: Should emit a #line directive here. }