aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/mbitmap.go
diff options
context:
space:
mode:
authorIskander Sharipov <quasilyte@gmail.com>2019-01-31 13:00:51 +0300
committerIskander Sharipov <quasilyte@gmail.com>2019-05-05 08:09:30 +0000
commit12e63226b97433bdb283bdb732cc189101e7fc7f (patch)
treeec4f162c8d1167469453253bf6d5c990e53e6ea9 /src/runtime/mbitmap.go
parent170b8b4b12be50eeccbcdadb8523fb4fc670ca72 (diff)
downloadgo-12e63226b97433bdb283bdb732cc189101e7fc7f.tar.xz
all: remove commented-out print statements
Those print statements are not a good debug helpers and only clutter the code. Change-Id: Ifbf450a04e6fa538af68e6352c016728edb4119a Reviewed-on: https://go-review.googlesource.com/c/go/+/160537 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
Diffstat (limited to 'src/runtime/mbitmap.go')
-rw-r--r--src/runtime/mbitmap.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/runtime/mbitmap.go b/src/runtime/mbitmap.go
index 6fcdea1538..30ec5f1cc9 100644
--- a/src/runtime/mbitmap.go
+++ b/src/runtime/mbitmap.go
@@ -1667,15 +1667,12 @@ Run:
if n == 0 {
// Program is over; continue in trailer if present.
if trailer != nil {
- //println("trailer")
p = trailer
trailer = nil
continue
}
- //println("done")
break Run
}
- //println("lit", n, dst)
nbyte := n / 8
for i := uintptr(0); i < nbyte; i++ {
bits |= uintptr(*p) << nbits