From 00c5b28923ce3e735eeeb926fd80d37272f7b771 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 10 Feb 2008 21:12:45 +0000 Subject: [PATCH] long is 32-bit is on win32. llvm-svn: 46935 --- clang/Lex/Preprocessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/Lex/Preprocessor.cpp b/clang/Lex/Preprocessor.cpp index 141536a1be98..85a2c47c6ca2 100644 --- a/clang/Lex/Preprocessor.cpp +++ b/clang/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. }