summaryrefslogtreecommitdiff
path: root/src/runtime/gcinfo_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-10-29 11:54:48 -0400
committerRuss Cox <rsc@golang.org>2014-10-29 11:54:48 -0400
commit40520a21d8b050635a417666db959f75d757fff5 (patch)
tree212a0b7c0bdeab8ee517584b3ddf33222878258d /src/runtime/gcinfo_test.go
parent7d8c40f1a65329094210933bca66b8862b0c28b8 (diff)
parent9232cbb6a6aaa8a4197b22819406128ff0f99265 (diff)
downloadgo-40520a21d8b050635a417666db959f75d757fff5.tar.gz
[dev.garbage] all: merge default (dd5014ed9b01) into dev.garbage
LGTM=rlh R=rlh CC=golang-codereviews https://codereview.appspot.com/170730043
Diffstat (limited to 'src/runtime/gcinfo_test.go')
-rw-r--r--src/runtime/gcinfo_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/gcinfo_test.go b/src/runtime/gcinfo_test.go
index 88f6703f9..e74d8c2c0 100644
--- a/src/runtime/gcinfo_test.go
+++ b/src/runtime/gcinfo_test.go
@@ -188,6 +188,6 @@ var (
infoString = []byte{BitsPointer, BitsDead}
infoSlice = []byte{BitsPointer, BitsDead, BitsDead}
- infoEface = []byte{BitsMultiWord, BitsEface}
- infoIface = []byte{BitsMultiWord, BitsIface}
+ infoEface = []byte{BitsPointer, BitsPointer}
+ infoIface = []byte{BitsPointer, BitsPointer}
)