diff options
Diffstat (limited to 'llgo/third_party/gotools/go/ssa/lvalue.go')
-rw-r--r-- | llgo/third_party/gotools/go/ssa/lvalue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llgo/third_party/gotools/go/ssa/lvalue.go b/llgo/third_party/gotools/go/ssa/lvalue.go index cdc1cedc867..1fbbb7b1cbd 100644 --- a/llgo/third_party/gotools/go/ssa/lvalue.go +++ b/llgo/third_party/gotools/go/ssa/lvalue.go @@ -29,7 +29,7 @@ type lvalue interface { type address struct { addr Value pos token.Pos // source position - expr ast.Expr // source syntax [debug mode] + expr ast.Expr // source syntax of the value (not address) [debug mode] } func (a *address) load(fn *Function) Value { |