Commit fccd9428 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

runtime: gofmt

Fixes #9339

Change-Id: I22faf2593cb73f42612c2c2bfe38de001fb2746b
Reviewed-on: https://go-review.googlesource.com/1630Reviewed-by: default avatarAndrew Gerrand <adg@golang.org>
parent 5308c6d9
...@@ -32,13 +32,12 @@ func TestWriteHeapDumpNonempty(t *testing.T) { ...@@ -32,13 +32,12 @@ func TestWriteHeapDumpNonempty(t *testing.T) {
} }
} }
type Obj struct { type Obj struct {
x, y int x, y int
} }
func objfin(x *Obj) { func objfin(x *Obj) {
println("finalized", x) println("finalized", x)
} }
func TestWriteHeapDumpFinalizers(t *testing.T) { func TestWriteHeapDumpFinalizers(t *testing.T) {
......
...@@ -477,7 +477,7 @@ type finblock struct { ...@@ -477,7 +477,7 @@ type finblock struct {
next *finblock next *finblock
cnt int32 cnt int32
_ int32 _ int32
fin [(_FinBlockSize-2*ptrSize-2*4)/unsafe.Sizeof(finalizer{})]finalizer fin [(_FinBlockSize - 2*ptrSize - 2*4) / unsafe.Sizeof(finalizer{})]finalizer
} }
// Information from the compiler about the layout of stack frames. // Information from the compiler about the layout of stack frames.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment