diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 2001-08-30 14:06:45 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 2001-08-30 14:06:45 (GMT) |
commit | a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d (patch) | |
tree | 6d4a1d2d1fe4f65babb355273ec8145353471d77 /Python | |
parent | 2f38f81fec40071cb781b552f781de90366d0189 (diff) | |
download | cpython-a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d.zip cpython-a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d.tar.gz cpython-a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d.tar.bz2 |
Removed unreachable goto statement to silence SGI compiler.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 1 |
1 files changed, 0 insertions, 1 deletions
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) { |