diff options
| author | Quentin Colombet <qcolombet@apple.com> | 2016-02-03 22:14:53 +0000 |
|---|---|---|
| committer | Quentin Colombet <qcolombet@apple.com> | 2016-02-03 22:14:53 +0000 |
| commit | 0cdb86bd382c26c6543540961fc2c3a54d6bf1f8 (patch) | |
| tree | ef703218b476c148833c91315948f90179266497 /clang/lib/Sema | |
| parent | e551051a58f2188ccafd28ad47b5092875cc72e8 (diff) | |
| download | bcm5719-llvm-0cdb86bd382c26c6543540961fc2c3a54d6bf1f8.tar.gz bcm5719-llvm-0cdb86bd382c26c6543540961fc2c3a54d6bf1f8.zip | |
Revert r259624 - Make CF constant string decl visible to name lookup to fix module errors.
This breaks some internal bots in stage2: clang seg fault.
Looking with Ben to see what is going on.
llvm-svn: 259715
Diffstat (limited to 'clang/lib/Sema')
| -rw-r--r-- | clang/lib/Sema/Sema.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index 3745cdd9a59..39b8cc9f0c6 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -189,10 +189,6 @@ void Sema::Initialize() { DeclarationName Protocol = &Context.Idents.get("Protocol"); if (IdResolver.begin(Protocol) == IdResolver.end()) PushOnScopeChains(Context.getObjCProtocolDecl(), TUScope); - - DeclarationName ConstantString = &Context.Idents.get("NSConstantString"); - if (IdResolver.begin(ConstantString) == IdResolver.end()) - PushOnScopeChains(Context.getCFConstantStringDecl(), TUScope); } // Initialize Microsoft "predefined C++ types". |

