diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-07-02 21:23:46 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-02 21:23:46 +0200 |
commit | 04525552b9f8bed5bc2f29117ac3486763a1343d (patch) | |
tree | 3edb798e73980dd72de8c2263be3691165e2b7e8 /makedef.pl | |
parent | 3dbcc5e0ae2d584501e47a0ca58e6f7a2888e02e (diff) | |
download | perl-04525552b9f8bed5bc2f29117ac3486763a1343d.tar.gz |
Teach makedef.pl that PL_op_exec_cnt is only available with -DPERL_TRACE_OPS.
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/makedef.pl b/makedef.pl index ae3b510e82..8523455351 100644 --- a/makedef.pl +++ b/makedef.pl @@ -540,6 +540,9 @@ if ($define{'PERL_GLOBAL_STRUCT'}) { ++$skip{$_} foreach qw(Perl_init_global_struct Perl_free_global_struct); } +++$skip{PL_op_exec_cnt} + unless $define{PERL_TRACE_OPS}; + # functions from *.sym files my @syms = qw(globvar.sym); |