Commit 7f6ce516 authored by Kevin Burke's avatar Kevin Burke

cmd/compile/internal/ssa: fix spelling mistake

Change-Id: I4b8f1b61c10f60ddb3687759af0be1641c1f78ce
Reviewed-on: https://go-review.googlesource.com/43111Reviewed-by: 's avatarAlex Brainman <alex.brainman@gmail.com>
parent 9fdf77c3
...@@ -322,7 +322,7 @@ func cmpVal(v, w *Value, auxIDs auxmap) types.Cmp { ...@@ -322,7 +322,7 @@ func cmpVal(v, w *Value, auxIDs auxmap) types.Cmp {
// that generate memory. // that generate memory.
return lt2Cmp(v.ID < w.ID) return lt2Cmp(v.ID < w.ID)
} }
// OpSelect is a pseudo-op. We need to be more agressive // OpSelect is a pseudo-op. We need to be more aggressive
// regarding CSE to keep multiple OpSelect's of the same // regarding CSE to keep multiple OpSelect's of the same
// argument from existing. // argument from existing.
if v.Op != OpSelect0 && v.Op != OpSelect1 { if v.Op != OpSelect0 && v.Op != OpSelect1 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment