forgot to commit this before.

llvm-svn: 69480
This commit is contained in:
Chris Lattner 2009-04-18 21:55:17 +00:00
parent 397ca4a9ef
commit 637652d959
1 changed files with 1 additions and 1 deletions

View File

@ -3026,7 +3026,7 @@ void JumpScopeChecker::BuildScopeInformation(Stmt *S, unsigned ParentScope) {
// @catch always starts a new scope.
// FIXME: We have to do this because @catches are nested inside each other,
// which seems weird and causes us to emit wierd diagnostics.
Scopes.push_back(GotoScope(ParentScope,diag::note_protected_by_objc_catch,
Scopes.push_back(GotoScope(ParentScope, diag::note_protected_by_objc_catch,
AC->getAtCatchLoc()));
ParentScope = Scopes.size()-1;
}