Hello r (cc: golang-dev@googlegroups.com), I'd like you to review this change.
*** Submitted as d0b988290591 *** runtime: fix amd64 build (broke by 386 support for Plan 9) TBR=r CC=golang-dev http://codereview.appspot.com/2556041
LGTM On Oct 18, 2010, at 10:01 AM, rsc@golang.org wrote: > Reviewers: r, > > Message: > Hello r (cc: golang-dev@googlegroups.com), > > I'd like you to review this change. > > > Description: > runtime: fix amd64 build (broke by 386 support for Plan 9) > > Please review this at http://codereview.appspot.com/2556041/ > > Affected files: > M src/pkg/runtime/386/asm.s > M src/pkg/runtime/runtime.c > > > Index: src/pkg/runtime/386/asm.s > =================================================================== > --- a/src/pkg/runtime/386/asm.s > +++ b/src/pkg/runtime/386/asm.s > @@ -416,4 +416,3 @@ > GLOBL g0(SB), $1024 > GLOBL tls0(SB), $32 > GLOBL initcgo(SB), $4 > -GLOBL isplan9(SB), $4 > Index: src/pkg/runtime/runtime.c > =================================================================== > --- a/src/pkg/runtime/runtime.c > +++ b/src/pkg/runtime/runtime.c > @@ -147,7 +147,7 @@ > argv = v; > } > > -extern int32 isplan9; > +int32 isplan9; > > void > goargs(void) > >