]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/cmd/compile/internal/ir/stmt.go
cmd/compile: implement range over func
[gostls13.git] / src / cmd / compile / internal / ir / stmt.go
index 3e925b9db2e78823ff933a0158d3a6688022b93a..b3d6b0fbd5c4d71dd12ed6db747ced7e8da38f72 100644 (file)
@@ -242,7 +242,8 @@ func NewForStmt(pos src.XPos, init Node, cond, post Node, body []Node, distinctV
 // in a different context (a separate goroutine or a later time).
 type GoDeferStmt struct {
        miniStmt
-       Call Node
+       Call    Node
+       DeferAt Expr
 }
 
 func NewGoDeferStmt(pos src.XPos, op Op, call Node) *GoDeferStmt {