]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: cleanup toolstash pacifier from OXFALL removal
authorMatthew Dempsky <mdempsky@google.com>
Fri, 1 Sep 2017 21:58:32 +0000 (14:58 -0700)
committerMatthew Dempsky <mdempsky@google.com>
Tue, 19 Sep 2017 18:20:29 +0000 (18:20 +0000)
Change-Id: Ide7fe6b09247b7a6befbdfc2d6ce5988aa1df323
Reviewed-on: https://go-review.googlesource.com/61131
Reviewed-by: Robert Griesemer <gri@golang.org>
src/cmd/compile/internal/gc/syntax.go

index ee0666a9462b37582150af231688bb082f306d81..db8597e22325571ad141f472c67c13bbb6f8e058 100644 (file)
@@ -563,7 +563,6 @@ const (
        OCONTINUE // continue
        ODEFER    // defer Left (Left must be call)
        OEMPTY    // no-op (empty statement)
-       _         // placeholder to appease toolstash
        OFALL     // fallthrough
        OFOR      // for Ninit; Left; Right { Nbody }
        OFORUNTIL // for Ninit; Left; Right { Nbody } ; test applied after executing body, not before