diff options
author | James Molloy <james.molloy@arm.com> | 2012-02-28 18:12:11 +0000 |
---|---|---|
committer | James Molloy <james.molloy@arm.com> | 2012-02-28 18:12:11 +0000 |
commit | 051390fffab6f63a76ca919d2fe8e4c5f1ba13f2 (patch) | |
tree | f00aebf83d6f192405852f5afb442374bcd0e75c /clang/lib/Sema/Sema.cpp | |
parent | 0c281a7deb6a4b9c64bf4a4a7289e69cced4c275 (diff) | |
download | bcm5719-llvm-051390fffab6f63a76ca919d2fe8e4c5f1ba13f2.tar.gz bcm5719-llvm-051390fffab6f63a76ca919d2fe8e4c5f1ba13f2.zip |
Correctly track tags and enum members defined in the prototype of a function, and ensure they are properly scoped.
This fixes code such as:
enum e {x, y};
int f(enum {y, x} n) {
return 0;
}
This finally fixes PR5464 and PR5477.
llvm-svn: 151638
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index cfb4e4c91b9..c5841c0eddd 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -94,7 +94,7 @@ Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, ObjCShouldCallSuperDealloc(false), ObjCShouldCallSuperFinalize(false), TUKind(TUKind), - NumSFINAEErrors(0), SuppressAccessChecking(false), + NumSFINAEErrors(0), InFunctionDeclarator(false), SuppressAccessChecking(false), AccessCheckingSFINAE(false), InNonInstantiationSFINAEContext(false), NonInstantiationEntries(0), ArgumentPackSubstitutionIndex(-1), CurrentInstantiationScope(0), TyposCorrected(0), |