diff options
author | Steve Naroff <snaroff@apple.com> | 2008-02-07 23:24:32 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-02-07 23:24:32 +0000 |
commit | b746ce84fb5c3fd2c5659f84dc6f2a883b499dc2 (patch) | |
tree | 2ea14dd89d643fb84e1238fabc5c795ead2af8fc /Lex/Preprocessor.cpp | |
parent | d957aa09333ff428f9675fb9f66dde632c2bcf5d (diff) |
- Add support for fuzzy parsing line-oriented __asm's (yuck).
- Change handling of __w64 to a built-in macro.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Lex/Preprocessor.cpp')
-rw-r--r-- | Lex/Preprocessor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lex/Preprocessor.cpp b/Lex/Preprocessor.cpp index 2fe08c6715..141536a1be 100644 --- a/Lex/Preprocessor.cpp +++ b/Lex/Preprocessor.cpp @@ -429,6 +429,7 @@ static void InitializePredefinedMacros(Preprocessor &PP, DefineBuiltinMacro(Buf, "__cdecl="); DefineBuiltinMacro(Buf, "_cdecl="); DefineBuiltinMacro(Buf, "__ptr64="); + DefineBuiltinMacro(Buf, "__w64="); DefineBuiltinMacro(Buf, "__forceinline="); DefineBuiltinMacro(Buf, "__int8=char"); DefineBuiltinMacro(Buf, "__int16=short"); |