]> Cypherpunks repositories - gostls13.git/commitdiff
[dev.ssa] cmd/internal/ssa: fix typo
authorKeith Randall <khr@golang.org>
Tue, 31 Mar 2015 22:37:25 +0000 (15:37 -0700)
committerKeith Randall <khr@golang.org>
Tue, 31 Mar 2015 23:31:17 +0000 (23:31 +0000)
Change-Id: I2209da94f1fd76267847d8d599e17f9d9a296ed3
Reviewed-on: https://go-review.googlesource.com/8320
Reviewed-by: Alan Donovan <adonovan@google.com>
src/cmd/internal/ssa/cse.go

index 71f23013cf2a23bef2ed621f68e7d2091bc2ca5b..c44b08f61c8470b6e12142e91526648b51c6ecac 100644 (file)
@@ -56,7 +56,7 @@ func cse(f *Func) {
        }
 
        // Find an equivalence class where some members of the class have
-       // non-equvalent arguments.  Split the equivalence class appropriately.
+       // non-equivalent arguments.  Split the equivalence class appropriately.
        // Repeat until we can't find any more splits.
        for {
                changed := false