X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=regnodes.h;h=89c78e6bace264d0b7ce157d107efa39808b4290;hb=8fc173423e29547f0d1de6373cac1b08dfb0c024;hp=c5725cd70715661d88fa7c724e2f2e3a1720cb0d;hpb=d6a287148f674729887096e6af50b42b464c3451;p=p5sagit%2Fp5-mst-13.2.git diff --git a/regnodes.h b/regnodes.h index c5725cd..89c78e6 100644 --- a/regnodes.h +++ b/regnodes.h @@ -173,7 +173,7 @@ EXTCONST U8 PL_regkind[] = { #ifdef REG_COMP_C -const static U8 regarglen[] = { +static const U8 regarglen[] = { 0, /* END */ 0, /* SUCCEED */ 0, /* BOL */ @@ -256,7 +256,7 @@ const static U8 regarglen[] = { 0, /* OPTIMIZED */ }; -const static char reg_off_by_arg[] = { +static const char reg_off_by_arg[] = { 0, /* END */ 0, /* SUCCEED */ 0, /* BOL */ @@ -340,7 +340,7 @@ const static char reg_off_by_arg[] = { }; #ifdef DEBUGGING -const static char * const reg_name[] = { +static const char * const reg_name[] = { "END", /* 0 */ "SUCCEED", /* 0x1 */ "BOL", /* 0x2 */ @@ -423,7 +423,7 @@ const static char * const reg_name[] = { "OPTIMIZED", /* 0x4f */ }; -const static int reg_num = 80; +static const int reg_num = 80; #endif /* DEBUGGING */ #endif /* REG_COMP_C */