diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-04-26 21:08:36 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-04-26 21:08:36 +0000 |
commit | d98ecd615ff0b0985b7145c56fe92821b70559dd (patch) | |
tree | c726a8b9ce4d919e2287bc9389dafe4fa7c32336 /clang/lib/Parse/ParseStmt.cpp | |
parent | 0d0d3e56dd2afccd25dd5da0a5a34484b7a3474c (diff) | |
download | bcm5719-llvm-d98ecd615ff0b0985b7145c56fe92821b70559dd.tar.gz bcm5719-llvm-d98ecd615ff0b0985b7145c56fe92821b70559dd.zip |
The mysterious bug turns out to be an incredibly bone-headed mistake.
llvm-svn: 70160
Diffstat (limited to 'clang/lib/Parse/ParseStmt.cpp')
-rw-r--r-- | clang/lib/Parse/ParseStmt.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp index ce887287360..35348d58520 100644 --- a/clang/lib/Parse/ParseStmt.cpp +++ b/clang/lib/Parse/ParseStmt.cpp @@ -1324,11 +1324,12 @@ Parser::DeclPtrTy Parser::ParseFunctionTryBlock(DeclPtrTy Decl) { if (Tok.is(tok::colon)) ParseConstructorInitializer(Decl); + SourceLocation LBraceLoc = Tok.getLocation(); OwningStmtResult FnBody(ParseCXXTryBlockCommon(TryLoc)); // If we failed to parse the try-catch, we just give the function an empty // compound statement as the body. if (FnBody.isInvalid()) - FnBody = Actions.ActOnCompoundStmt(TryLoc, TryLoc, + FnBody = Actions.ActOnCompoundStmt(LBraceLoc, LBraceLoc, MultiStmtArg(Actions), false); return Actions.ActOnFinishFunctionBody(Decl, move(FnBody)); |