mirror of
https://github.com/golang/go
synced 2024-11-12 09:20:22 -07:00
runtime: remove debugging print in cgoCheckTypedBlock
Change-Id: I83639fcde88e7d9747b54728a9481ee2e1b23a64 Reviewed-on: https://go-review.googlesource.com/19486 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
76cb265f28
commit
387d5b8cfb
@ -135,9 +135,6 @@ func cgoCheckTypedBlock(typ *_type, src unsafe.Pointer, off, size uintptr) {
|
||||
hbits := heapBitsForAddr(uintptr(src))
|
||||
for i := uintptr(0); i < off+size; i += sys.PtrSize {
|
||||
bits := hbits.bits()
|
||||
if bits != 0 {
|
||||
println(i, bits)
|
||||
}
|
||||
if i >= off && bits&bitPointer != 0 {
|
||||
v := *(*unsafe.Pointer)(add(src, i))
|
||||
if cgoIsGoPointer(v) {
|
||||
|
Loading…
Reference in New Issue
Block a user