From a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d Mon Sep 17 00:00:00 2001 From: Sjoerd Mullender Date: Thu, 30 Aug 2001 14:06:45 +0000 Subject: Removed unreachable goto statement to silence SGI compiler. --- Python/compile.c | 1 - 1 file changed, 1 deletion(-) 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(struct symtable *st, node *n, int flag) symtable_assign(st, CHILD(n, i), flag); return; } - goto loop; case atom: tmp = CHILD(n, 0); if (TYPE(tmp) == LPAR || TYPE(tmp) == LSQB) { -- cgit v0.12