aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/AST/CFG.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/AST/CFG.cpp b/lib/AST/CFG.cpp
index cd07aacbff..4ec124fe02 100644
--- a/lib/AST/CFG.cpp
+++ b/lib/AST/CFG.cpp
@@ -898,14 +898,7 @@ CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
}
CFGBlock* CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt* S) {
- // Process the statements of the @finally block.
- if (ObjCAtFinallyStmt *FS = S->getFinallyStmt())
- Visit(FS->getFinallyBody());
-
- // FIXME: Handle the @catch statements.
-
- // Process the try body
- return Visit(S->getTryBody());
+ return NYS();
}
CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {