]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: fix comment typo
authorJamie Kerr <jkerr113@googlemail.com>
Sat, 15 Jul 2017 18:20:25 +0000 (12:20 -0600)
committerIan Lance Taylor <iant@golang.org>
Sat, 15 Jul 2017 18:36:07 +0000 (18:36 +0000)
Change-Id: If581bd4e9d9b4421e2ae20582c596fccb73d9aed
Reviewed-on: https://go-review.googlesource.com/48866
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/cmd/compile/internal/ssa/gen/AMD64Ops.go

index 28131db5f5d832e90e2acd5987c32e41e006fa4e..c51cbd2238cb95cc75b7f88ee32da8ae9a0c2356 100644 (file)
@@ -550,8 +550,8 @@ func init() {
                {name: "FlagEQ"},     // equal
                {name: "FlagLT_ULT"}, // signed < and unsigned <
                {name: "FlagLT_UGT"}, // signed < and unsigned >
-               {name: "FlagGT_UGT"}, // signed > and unsigned <
-               {name: "FlagGT_ULT"}, // signed > and unsigned >
+               {name: "FlagGT_UGT"}, // signed > and unsigned >
+               {name: "FlagGT_ULT"}, // signed > and unsigned <
 
                // Atomic loads.  These are just normal loads but return <value,memory> tuples
                // so they can be properly ordered with other loads.