Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(42)

Unified Diff: go/ssa/builder.go

Issue 87210044: go.tools/go/ssa: emit a recover block if the function's... (Closed)
Patch Set: diff -r 6f5d6de34e1f https://code.google.com/p/go.tools Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | go/ssa/interp/interp.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: go/ssa/builder.go
===================================================================
--- a/go/ssa/builder.go
+++ b/go/ssa/builder.go
@@ -1912,14 +1912,12 @@
b.setCall(fn, s.Call, &v.Call)
fn.emit(&v)
- // A deferred call can cause recovery from panic.
- // If the panicking function has named results,
- // control resumes at the Recover block to load those
- // locals (which may be mutated by the deferred call)
- // and return them.
- if fn.namedResults != nil {
- createRecoverBlock(fn)
- }
+ // A deferred call can cause recovery from panic, and control
+ // resumes at the Recover block. If the panicking function
adonovan 2014/06/13 17:04:59 You can delete the second and third sentences sinc
+ // has named results, we load those locals (which may be
+ // mutated by the deferred call) and return them. Otherwise,
+ // we simply return zero values.
+ createRecoverBlock(fn)
case *ast.ReturnStmt:
var results []Value
« no previous file with comments | « no previous file | go/ssa/interp/interp.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b