Removed unreachable goto statement to silence SGI compiler.
diff --git a/Python/compile.c b/Python/compile.c
index d238a30..1921220 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -5363,7 +5363,6 @@
 				symtable_assign(st, CHILD(n, i), flag);
 			return;
 		}
-		goto loop;
 	case atom:
 		tmp = CHILD(n, 0);
 		if (TYPE(tmp) == LPAR || TYPE(tmp) == LSQB) {