From 0d46e09a6299ee39ec954683a582d25f5ea086c7 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Fri, 14 Oct 2005 03:46:24 +0000 Subject: gcc complains when it sees variables declared const register ... switched them all to register const ... p4raw-id: //depot/perl@25757 --- regexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'regexec.c') diff --git a/regexec.c b/regexec.c index d19b82ea5a..e058216ce6 100644 --- a/regexec.c +++ b/regexec.c @@ -2407,7 +2407,7 @@ S_regmatch(pTHX_ regnode *prog) #if 0 I32 firstcp = PL_savestack_ix; #endif - const register bool do_utf8 = PL_reg_match_utf8; + register const bool do_utf8 = PL_reg_match_utf8; #ifdef DEBUGGING SV *dsv0 = PERL_DEBUG_PAD_ZERO(0); SV *dsv1 = PERL_DEBUG_PAD_ZERO(1); -- cgit v1.2.1