aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/error.go
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2016-04-07 16:29:16 -0400
committerDavid Crawshaw <crawshaw@golang.org>2016-04-22 10:08:05 +0000
commit1492e7db059ea7903110b0725d5ced3134558e73 (patch)
tree55b92fbd4305828b28b431a2d05f0291ca932af1 /src/runtime/error.go
parentbb52ceafea60dc4688b6c6b71f241752ce597db8 (diff)
downloadgo-1492e7db059ea7903110b0725d5ced3134558e73.tar.xz
cmd/compile, etc: use nameOff for rtype string
linux/amd64: cmd/go: -8KB (basically nothing) linux/amd64 PIE: cmd/go: -191KB (1.6%) jujud: -1.5MB (1.9%) Updates #6853 Fixes #15064 Change-Id: I0adbb95685e28be92e8548741df0e11daa0a9b5f Reviewed-on: https://go-review.googlesource.com/21777 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/error.go')
-rw-r--r--src/runtime/error.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/error.go b/src/runtime/error.go
index 15f6bdf014..0238c5e592 100644
--- a/src/runtime/error.go
+++ b/src/runtime/error.go
@@ -67,7 +67,7 @@ type stringer interface {
func typestring(x interface{}) string {
e := efaceOf(&x)
- return e._type._string
+ return e._type.string()
}
// For calling from C.