From: Sjoerd Mullender Date: Thu, 30 Aug 2001 14:06:45 +0000 (+0000) Subject: Removed unreachable goto statement to silence SGI compiler. X-Git-Tag: v2.2a3~211 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d;p=thirdparty%2FPython%2Fcpython.git Removed unreachable goto statement to silence SGI compiler. --- diff --git a/Python/compile.c b/Python/compile.c index d238a302a5e5..1921220325b7 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) {