summaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-10-02 14:26:04 -0400
committerRuss Cox <rsc@golang.org>2014-10-02 14:26:04 -0400
commit59a42ca068d7cbe0b92f2f68768129599a6c42f8 (patch)
treecd8d568bce87e7e9795f99c163be3a51c544c6ed /src/runtime
parentc17ee649b04ecdbe973d13f4b6ef087947ba80ea (diff)
downloadgo-59a42ca068d7cbe0b92f2f68768129599a6c42f8.tar.gz
[dev.garbage] runtime: remove another BitsMultiWord
Not found because it was not used by name. Add name in comments for what's left behind. LGTM=rlh R=rlh CC=golang-codereviews https://codereview.appspot.com/148430043
Diffstat (limited to 'src/runtime')
-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}
)