Commit 8e922759 authored by Dave Cheney's avatar Dave Cheney

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: 's avatarJosh Bleecher Snyder <josharian@gmail.com>
parent df2b63f0
......@@ -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
}
......
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