aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-06-20 12:15:10 -0700
committerRuss Cox <rsc@golang.org>2010-06-20 12:15:10 -0700
commit9f002f6892fb68c0f6fd504fbf1468f17de77eb6 (patch)
tree33cb1bd2bfea3781cdfd14e5372d9e6f462c58ca
parent37c531f51fe20a81f911f9b218e5d0125f91ec11 (diff)
downloadgo-9f002f6892fb68c0f6fd504fbf1468f17de77eb6.tar.gz
go-9f002f6892fb68c0f6fd504fbf1468f17de77eb6.zip
gc: delete debug print
R=ken2 CC=golang-dev https://golang.org/cl/1732043
-rw-r--r--src/cmd/gc/subr.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cmd/gc/subr.c b/src/cmd/gc/subr.c
index b47ccbf73f..70d58a9ab0 100644
--- a/src/cmd/gc/subr.c
+++ b/src/cmd/gc/subr.c
@@ -3143,7 +3143,6 @@ implements(Type *t, Type *iface, Type **m, Type **samename, int *ptr)
imtype = methodfunc(im->type, 0);
tm = ifacelookdot(im->sym, t, &followptr, 0);
if(tm == T || !eqtype(methodfunc(tm->type, 0), imtype)) {
-print("try case\n");
if(tm == T)
tm = ifacelookdot(im->sym, t, &followptr, 1);
*m = im;