1
0
mirror of https://github.com/golang/go synced 2024-09-30 17:38:33 -06: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:
Dave Cheney 2016-09-16 00:17:33 +10:00
parent df2b63f09b
commit 8e922759b3

View File

@ -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
}