Visit the initial test element of the listmaker for a list
comprehension.  Fixes bug reported by Tim Peters.
diff --git a/Python/compile.c b/Python/compile.c
index a9ff3df..131f97b 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -4210,7 +4210,8 @@
 	case listmaker:
 		if (NCH(n) > 1 && TYPE(CHILD(n, 1)) == list_for) {
 			symtable_list_comprehension(st, CHILD(n, 1));
-			break;
+			n = CHILD(n, 0);
+			goto loop;
 		}
 	case atom:
 		if (TYPE(n) == atom && TYPE(CHILD(n, 0)) == NAME) {