Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion embed.fnc
Original file line number Diff line number Diff line change
Expand Up @@ -2224,7 +2224,7 @@ ARdp |OP * |newCVREF |I32 flags \
ARdpx |OP * |newDEFEROP |I32 flags \
|NN OP *block
ARdp |OP * |newDEFSVOP
Cp |void |newFORM |I32 floor \
Cdp |void |newFORM |I32 floor \
|NULLOK OP *o \
|NULLOK OP *block
ARdp |OP * |newFOROP |I32 flags \
Expand Down
8 changes: 8 additions & 0 deletions op.c
Original file line number Diff line number Diff line change
Expand Up @@ -12235,6 +12235,14 @@ Perl_newSTUB(pTHX_ GV *gv, bool fake)
return cv;
}

/*
=for apidoc newFORM

Constructs, checks, and returns a format op.

=cut
*/

void
Perl_newFORM(pTHX_ I32 floor, OP *o, OP *block)
{
Expand Down
Loading