1
0
mirror of https://github.com/golang/go synced 2024-11-18 09:44:50 -07:00

cmd/compile/internal/ssa: fix spelling mistake

Change-Id: I4b8f1b61c10f60ddb3687759af0be1641c1f78ce
Reviewed-on: https://go-review.googlesource.com/43111
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
This commit is contained in:
Kevin Burke 2017-05-09 22:09:08 -07:00
parent 9fdf77c373
commit 7f6ce5168d

View File

@ -322,7 +322,7 @@ func cmpVal(v, w *Value, auxIDs auxmap) types.Cmp {
// that generate memory.
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
// argument from existing.
if v.Op != OpSelect0 && v.Op != OpSelect1 {