You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// checkgoto checks that a goto from from to to does not// jump into a block or jump over variable declarations.// It is a copy of checkgoto in the pre-SSA backend,// modified only for line number handling.// TODO: document how this works and why it is designed the way it is.func (s*state) checkgoto(from*Node, to*Node) {
iffrom.Sym== to.Sym {
return
}
...
I just came across this cryptic comment from from to to.
Is this typo? If not, can anybody help me understand this comment?
If it's not a typo, please feel free to close this :)
Thanks a lot!
The text was updated successfully, but these errors were encountered:
https://github.com/golang/go/blob/master/src/cmd/compile/internal/gc/ssa.go#L3699
I just came across this cryptic comment
from from to to
.Is this typo? If not, can anybody help me understand this comment?
If it's not a typo, please feel free to close this :)
Thanks a lot!
The text was updated successfully, but these errors were encountered: