Hello golang-codereviews@googlegroups.com, I'd like you to review this change to https://code.google.com/p/go
LGTM On Mar 19, 2014 5:14 PM, <iant@golang.org> wrote: > Reviewers: golang-codereviews, > > Message: > Hello golang-codereviews@googlegroups.com, > > I'd like you to review this change to > https://code.google.com/p/go > > > Description: > cmd/6g: remove unused stosptr variable > > Please review this at https://codereview.appspot.com/78030043/ > > Affected files (+0, -3 lines): > M src/cmd/6g/galign.c > M src/cmd/6g/gg.h > > > Index: src/cmd/6g/galign.c > =================================================================== > --- a/src/cmd/6g/galign.c > +++ b/src/cmd/6g/galign.c > @@ -22,7 +22,6 @@ > int addptr = AADDQ; > int movptr = AMOVQ; > int leaptr = ALEAQ; > -int stosptr = ASTOSQ; > int cmpptr = ACMPQ; > > /* > @@ -49,7 +48,6 @@ > addptr = AADDL; > movptr = AMOVL; > leaptr = ALEAL; > - stosptr = ASTOSL; > cmpptr = ACMPL; > typedefs[0].sameas = TINT32; > typedefs[1].sameas = TUINT32; > Index: src/cmd/6g/gg.h > =================================================================== > --- a/src/cmd/6g/gg.h > +++ b/src/cmd/6g/gg.h > @@ -28,7 +28,6 @@ > extern int cmpptr; > extern int movptr; > extern int leaptr; > -extern int stosptr; > > /* > * ggen.c > > > -- > You received this message because you are subscribed to the Google Groups > "golang-codereviews" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to golang-codereviews+unsubscribe@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. >
*** Submitted as https://code.google.com/p/go/source/detail?r=517cafbf8385 *** cmd/6g: remove unused stosptr variable LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/78030043