Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions pod/perlguts.pod
Original file line number Diff line number Diff line change
Expand Up @@ -3938,10 +3938,11 @@ I<oldop> is the previous OP optimized, whose C<op_next> points to I<o>.
=item xop_dump

This member is a pointer to a function of type
C<void (pTHX_ OP *, struct OpDumpContext *)>. If set, this function is called
by C<op_dump()> when dumping a custom operator of this type, after the op's
basic fields have been printed. This function may make use of
C<opdump_printf()> to emit additional output that may be useful for debugging.
C<void (pTHX_ const OP *, struct Perl_OpDumpContext *)>. If set, this
function is called by C<op_dump()> when dumping a custom operator of this
type, after the op's basic fields have been printed. This function may make
use of C<opdump_printf()> to emit additional output that may be useful for
debugging.

The opaque structure pointer passed in as its final argument should be passed
directly into C<opdump_printf()>.
Expand Down
Loading