diff options
Diffstat (limited to 'regnodes.h')
-rw-r--r-- | regnodes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/regnodes.h b/regnodes.h index 4f4ff9e192..43ec681967 100644 --- a/regnodes.h +++ b/regnodes.h @@ -676,6 +676,10 @@ EXTCONST char * const PL_reg_extflags_name[] = { }; #endif /* DOINIT */ +#ifdef DEBUGGING +# define REG_EXTFLAGS_NAME_SIZE 32 +#endif + /* PL_reg_intflags_name[] - Opcode/state names in string form, for debugging */ #ifndef DOINIT @@ -699,6 +703,10 @@ EXTCONST char * const PL_reg_intflags_name[] = { }; #endif /* DOINIT */ +#ifdef DEBUGGING +# define REG_INTFLAGS_NAME_SIZE 14 +#endif + /* The following have no fixed length. U8 so we can do strchr() on it. */ #define REGNODE_VARIES(node) (PL_varies_bitmask[(node) >> 3] & (1 << ((node) & 7))) |