summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/Sema.cpp
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-02-28 16:48:43 +0000
committerSteve Naroff <snaroff@apple.com>2009-02-28 16:48:43 +0000
commitd123bd05cab62bb3c641d0c2343fd94e6a96235e (patch)
tree710a9706402f096e1bed6df64d28b5e65dccab2c /clang/lib/Sema/Sema.cpp
parent638b836aab3e6df7a568913fad46fd70225a1d21 (diff)
downloadbcm5719-llvm-d123bd05cab62bb3c641d0c2343fd94e6a96235e.tar.gz
bcm5719-llvm-d123bd05cab62bb3c641d0c2343fd94e6a96235e.zip
Fix <rdar://problem/6451399> problems with labels and blocks.
- Move the 'LabelMap' from Sema to Scope. To avoid layering problems, the second element is now a 'StmtTy *', which makes the LabelMap a bit more verbose to deal with. - Add 'ActiveScope' to Sema. Managed by ActOnStartOfFunctionDef(), ObjCActOnStartOfMethodDef(), ActOnBlockStmtExpr(). - Changed ActOnLabelStmt(), ActOnGotoStmt(), ActOnAddrLabel(), and ActOnFinishFunctionBody() to use the new ActiveScope. - Added FIXME to workaround in ActOnFinishFunctionBody() (for dealing with C++ nested functions). llvm-svn: 65694
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r--clang/lib/Sema/Sema.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp
index 2bb6a17ac10..57ed9884ba7 100644
--- a/clang/lib/Sema/Sema.cpp
+++ b/clang/lib/Sema/Sema.cpp
@@ -169,6 +169,8 @@ Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer)
StdNamespace = 0;
TUScope = 0;
+ ActiveScope = 0;
+
if (getLangOptions().CPlusPlus)
FieldCollector.reset(new CXXFieldCollector());
OpenPOWER on IntegriCloud