From: Jamie Kerr Date: Sat, 15 Jul 2017 18:20:25 +0000 (-0600) Subject: cmd/compile: fix comment typo X-Git-Tag: go1.9rc1~57 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0593ad1e235d324d928fd045bb97098cb3bd1c66;p=gostls13.git cmd/compile: fix comment typo Change-Id: If581bd4e9d9b4421e2ae20582c596fccb73d9aed Reviewed-on: https://go-review.googlesource.com/48866 Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/compile/internal/ssa/gen/AMD64Ops.go b/src/cmd/compile/internal/ssa/gen/AMD64Ops.go index 28131db5f5..c51cbd2238 100644 --- a/src/cmd/compile/internal/ssa/gen/AMD64Ops.go +++ b/src/cmd/compile/internal/ssa/gen/AMD64Ops.go @@ -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 tuples // so they can be properly ordered with other loads.