aboutsummaryrefslogtreecommitdiff
path: root/src/reflect
diff options
context:
space:
mode:
authorDavid Chase <drchase@google.com>2021-04-07 17:03:46 -0400
committerDavid Chase <drchase@google.com>2021-04-08 14:23:47 +0000
commit912c4e29d3cdabe11db70ed168ddaa4bcc515772 (patch)
treee39817fdf29fb0fb82d00f700a7d02724b409740 /src/reflect
parent1749f3915e55b473bcc281095f41598357d6b70f (diff)
downloadgo-912c4e29d3cdabe11db70ed168ddaa4bcc515772.tar.gz
go-912c4e29d3cdabe11db70ed168ddaa4bcc515772.zip
reflect: fix typo in result-in-registers case
t is the type of the function that was called tv is the type of the result This fixes the failures for GOEXPERIMENT=regabi,regabiargs go test go test text/template GOEXPERIMENT=regabi,regabiargs go test go test html/template Updates #40724. Change-Id: Ic9b02d72d18ff48c9de1209987cc39da619c2241 Reviewed-on: https://go-review.googlesource.com/c/go/+/308189 Trust: David Chase <drchase@google.com> Run-TryBot: David Chase <drchase@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/reflect')
-rw-r--r--src/reflect/value.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflect/value.go b/src/reflect/value.go
index 8afb1cc141..9670d4656b 100644
--- a/src/reflect/value.go
+++ b/src/reflect/value.go
@@ -592,7 +592,7 @@ func (v Value) call(op string, in []Value) []Value {
print("kind=", steps[0].kind, ", type=", tv.String(), "\n")
panic("mismatch between ABI description and types")
}
- ret[i] = Value{tv.common(), regArgs.Ptrs[steps[0].ireg], flag(t.Kind())}
+ ret[i] = Value{tv.common(), regArgs.Ptrs[steps[0].ireg], flag(tv.Kind())}
continue
}