diff options
author | Steve Naroff <snaroff@apple.com> | 2008-12-24 20:59:21 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-12-24 20:59:21 +0000 |
commit | f59e17ecf06ac60065e2d02058bd6f21f5d216cc (patch) | |
tree | ffcf291e679d94109003422c3888a1a2ce9e83d0 /lib/Lex/Preprocessor.cpp | |
parent | 7a897224381564826c2894572df92fb5ddd9ea37 (diff) |
Add explicit "fuzzy" parse support for Microsoft declspec.
Remove previous __declspec macro that would effectively erase the construct prior to parsing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 7800fb5189..97ff07049f 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -493,7 +493,6 @@ static void InitializePredefinedMacros(Preprocessor &PP, DefineBuiltinMacro(Buf, "__int16=short"); DefineBuiltinMacro(Buf, "__int32=int"); DefineBuiltinMacro(Buf, "__int64=long long"); - DefineBuiltinMacro(Buf, "__declspec(X)="); } |