diff options
author | Steve Naroff <snaroff@apple.com> | 2008-09-02 18:04:36 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-09-02 18:04:36 +0000 |
commit | c9a4eea59228bd06072927059979a1c9ccab45b5 (patch) | |
tree | 564a81f47ee22b5d4547ae6863401aa7f253df00 /lib/Lex/Preprocessor.cpp | |
parent | 042f955a20e67cd8c8cdfede96bc6ec5a7234294 (diff) |
Pull code from last commit. will put back soon.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55637 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 27c2e676e6..18b106ad84 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -476,13 +476,6 @@ static void InitializePredefinedMacros(Preprocessor &PP, DefineBuiltinMacro(Buf, "__int64=long long"); DefineBuiltinMacro(Buf, "__declspec(X)="); } - if (PP.getLangOptions().Blocks) { - DefineBuiltinMacro(Buf, "__byref=__attribute__((__blocks__(byref)))"); - DefineBuiltinMacro(Buf, "__block=__attribute__((__blocks__(byref)))"); - } else { - DefineBuiltinMacro(Buf, "__byref="); - DefineBuiltinMacro(Buf, "__block="); - } // FIXME: Should emit a #line directive here. } |