diff options
author | Karl Williamson <khw@cpan.org> | 2016-08-31 17:52:19 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-10-19 10:08:37 -0600 |
commit | a03e9135315c9b42294b83389d345c6e3953a3f7 (patch) | |
tree | b89b426483809cbfd4d28a0f7ca00b24c4b69b22 /embed.h | |
parent | 889458f14071a618cdc0fb519092327c4d5f5f61 (diff) | |
download | perl-a03e9135315c9b42294b83389d345c6e3953a3f7.tar.gz |
Add a regex_sets debugging function
This is enabled by a C flag, as commented. It is designed to be found
only by someone reading the code and wanting something temporary to help
in debugging.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1004,6 +1004,11 @@ #endif # endif # endif +# if defined(DEBUGGING) && defined(ENABLE_REGEX_SETS_DEBUGGING) +# if defined(PERL_IN_REGCOMP_C) +#define dump_regex_sets_structures(a,b,c,d) S_dump_regex_sets_structures(aTHX_ a,b,c,d) +# endif +# endif # if defined(PERL_ANY_COW) #define sv_setsv_cow(a,b) Perl_sv_setsv_cow(aTHX_ a,b) # endif |