From: Guido van Rossum Date: Tue, 7 Jul 1998 22:23:22 +0000 (+0000) Subject: Fix a benign problem found by a picky SGI compiler (unreachable break X-Git-Tag: v1.5.2a1~335 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f29990a90228cb227933178bd6ec81e8426939f;p=thirdparty%2FPython%2Fcpython.git Fix a benign problem found by a picky SGI compiler (unreachable break after a return). --- diff --git a/Modules/regexpr.c b/Modules/regexpr.c index 55b1dffa7b5d..a45b9e264f3b 100644 --- a/Modules/regexpr.c +++ b/Modules/regexpr.c @@ -917,7 +917,6 @@ static int re_optimize_star_jump(bufp, code) default: { return 0; - break; } } }