diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-10 21:12:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-10 21:12:45 +0000 |
commit | 9880ba94ca625952eeccd486bb22d0a659cbe00f (patch) | |
tree | b400f11b262c37044035ac42c8ab8b44f436ab99 /Lex/Preprocessor.cpp | |
parent | acb818a4f7d9b608826171094d6b5a555a8fe694 (diff) |
long is 32-bit is on win32.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46935 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Lex/Preprocessor.cpp')
-rw-r--r-- | Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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. } |