Skip to content
Snippets Groups Projects
Commit 3fcc6f35 authored by Argyrios Kyrtzidis's avatar Argyrios Kyrtzidis
Browse files

[Sema] Fix assertion hit with #pragma weak.

rdar://16264844

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203372 91177308-0d34-0410-b5e6-96231b3b80d8
parent 8f6e3146
No related branches found
No related tags found
No related merge requests found
......@@ -4655,6 +4655,8 @@ void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
// to insert Decl at TU scope, sorry.
DeclContext *SavedContext = CurContext;
CurContext = Context.getTranslationUnitDecl();
NewD->setDeclContext(CurContext);
NewD->setLexicalDeclContext(CurContext);
PushOnScopeChains(NewD, S);
CurContext = SavedContext;
} else { // just add weak to existing
......
......@@ -6,3 +6,6 @@ extern "C" {
void foo() {
};
}
extern "C" int Test;
#pragma weak test = Test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment