diff options
author | Tony Cook <tony@develop-help.com> | 2019-01-25 10:32:42 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2019-01-25 10:32:42 +1100 |
commit | 0f9a6232f0af0895807ddd0afae2d5512aa91bf9 (patch) | |
tree | e4d1e923a5b853b29a8babf920bf4293c4589465 /makedef.pl | |
parent | f8d82a1010426d0eb49c33cb903413b882c85c3e (diff) | |
download | perl-0f9a6232f0af0895807ddd0afae2d5512aa91bf9.tar.gz |
PERL_OP_PARENT is always defined, stop testing for it
PERL_OP_PARENT is the new reality, leaving the pre-processor
checks is more confusing that anything else.
I left the test in perl.c for consistency with the other checks in that
code.
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/makedef.pl b/makedef.pl index 3c541d85d6..b3fc164acc 100644 --- a/makedef.pl +++ b/makedef.pl @@ -478,12 +478,6 @@ if ($define{USE_THREAD_SAFE_LOCALE}) { } } -unless ($define{'PERL_OP_PARENT'}) { - ++$skip{$_} foreach qw( - Perl_op_parent - ); -} - unless ($define{'USE_DTRACE'}) { ++$skip{$_} foreach qw( Perl_dtrace_probe_call |