mirror of
https://github.com/golang/go
synced 2024-11-18 12:04:57 -07:00
cmd/compile/internal/gc: fix build
Fix conflict between CL 29213 and 29134. Change-Id: Ie58bd7195893d7e634f1b257ee0bdd3250cd23c2 Reviewed-on: https://go-review.googlesource.com/29137 TryBot-Result: Gobot Gobot <gobot@golang.org> Run-TryBot: Dave Cheney <dave@cheney.net> Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
This commit is contained in:
parent
df2b63f09b
commit
8e922759b3
@ -286,7 +286,7 @@ func staticcopy(l *Node, r *Node, out *[]*Node) bool {
|
||||
orig := r
|
||||
r = r.Name.Defn.Right
|
||||
|
||||
for r.Op == OCONVNOP && !Eqtype(r.Type, l.Type) {
|
||||
for r.Op == OCONVNOP && !eqtype(r.Type, l.Type) {
|
||||
r = r.Left
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user