Commit 759c5d8b authored by ZYunH's avatar ZYunH Committed by Keith Randall

runtime: fix typo in deferprocStack's comments

change "fp" to "fd".

Change-Id: I00e5fafcb68891356d508c49aa89969bfed7ed10
GitHub-Last-Rev: b06f976a3bacc6fc6f1fd0e4fc8c50da9764f736
GitHub-Pull-Request: golang/go#35557
Reviewed-on: https://go-review.googlesource.com/c/go/+/207038Reviewed-by: default avatarKeith Randall <khr@golang.org>
parent c0751158
...@@ -283,7 +283,7 @@ func deferprocStack(d *_defer) { ...@@ -283,7 +283,7 @@ func deferprocStack(d *_defer) {
d.varp = 0 d.varp = 0
// The lines below implement: // The lines below implement:
// d.panic = nil // d.panic = nil
// d.fp = nil // d.fd = nil
// d.link = gp._defer // d.link = gp._defer
// gp._defer = d // gp._defer = d
// But without write barriers. The first three are writes to // But without write barriers. The first three are writes to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment