diff options
| author | Adrian Prantl <aprantl@apple.com> | 2013-05-03 00:44:13 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2013-05-03 00:44:13 +0000 |
| commit | 44f38013e22475e122e6847de8642d1dd18d497d (patch) | |
| tree | 071b1b925da4a93c5577638f2ad38f2e9b18d631 /clang/lib/CodeGen/CGStmt.cpp | |
| parent | f12d9d93feacad93ff99dd2eb700c9ebee53bb34 (diff) | |
| download | bcm5719-llvm-44f38013e22475e122e6847de8642d1dd18d497d.tar.gz bcm5719-llvm-44f38013e22475e122e6847de8642d1dd18d497d.zip | |
Attempt to un-break the gdb buildbot.
- Use the debug location of the return expression for the cleanup code
if the return expression is trivially evaluatable, regardless of the
number of stop points in the function.
- Ensure that any EH code in the cleanup still gets the line number of
the closing } of the lexical scope.
- Added a testcase with EH in the cleanup.
rdar://problem/13442648
llvm-svn: 180982
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 73f66e0c8c7..5e2ebe0d9cd 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -38,8 +38,8 @@ void CodeGenFunction::EmitStopPoint(const Stmt *S) { Loc = S->getLocStart(); DI->EmitLocation(Builder, Loc); - if (++NumStopPoints == 1) - FirstStopPoint = Loc; + //if (++NumStopPoints == 1) + LastStopPoint = Loc; } } @@ -842,8 +842,9 @@ void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) { } } + NumReturnExprs += 1; if (RV == 0 || RV->isEvaluatable(getContext())) - ++NumSimpleReturnExprs; + NumSimpleReturnExprs += 1; cleanupScope.ForceCleanup(); EmitBranchThroughCleanup(ReturnBlock); |

