]> granicus.if.org Git - clang/commitdiff
long is 32-bit is on win32.
authorChris Lattner <sabre@nondot.org>
Sun, 10 Feb 2008 21:12:45 +0000 (21:12 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 10 Feb 2008 21:12:45 +0000 (21:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46935 91177308-0d34-0410-b5e6-96231b3b80d8

Lex/Preprocessor.cpp

index 141536a1be985c2418ead8459dadd06910cdaabc..85a2c47c6ca2cd756884758f7ecb98a0acc95471 100644 (file)
@@ -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.
 }