cmd/compile/internal/gc: fix the build

Commit acc90c5 passed the trybots, lingered for weeks, and in the
meantime the type of this variable changed to a bool. I didn't rebase
and re-run the trybots before submitting.

Fixes #12832

Change-Id: If24fda227edd8207f8069c67f1c45f08e6ac215a
Reviewed-on: https://go-review.googlesource.com/15286
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/src/cmd/compile/internal/gc/subr.go b/src/cmd/compile/internal/gc/subr.go
index 3280710..df6b6f6 100644
--- a/src/cmd/compile/internal/gc/subr.go
+++ b/src/cmd/compile/internal/gc/subr.go
@@ -2986,7 +2986,7 @@
 	var followptr bool
 	var rcvr *Type
 	for im := iface.Type; im != nil; im = im.Down {
-		if im.Broke == 1 {
+		if im.Broke {
 			continue
 		}
 		imtype = methodfunc(im.Type, nil)