diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-27 01:31:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-27 01:31:41 +0000 |
commit | 2b260de0f3727bc62519897f69d6f752c97d8502 (patch) | |
tree | 549e627839f07c068a424e2dddf0617b9e86466d /opcode.pl | |
parent | dff6d3cd91bb8f94ad6445629f3bfb07c761a04e (diff) | |
download | perl-2b260de0f3727bc62519897f69d6f752c97d8502.tar.gz |
more GCC v2.95 induced adjustments
p4raw-id: //depot/perl@4462
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -129,7 +129,7 @@ EXT OP * (CPERLscope(*PL_ppaddr)[])(pTHX) = { END for (@ops) { - print "\tPerl_pp_$_,\n"; + print "\tMEMBER_TO_FPTR(Perl_pp_$_),\n"; } print <<END; @@ -148,7 +148,7 @@ EXT OP * (CPERLscope(*PL_check)[]) (pTHX_ OP *op) = { END for (@ops) { - print "\t", &tab(3, "Perl_$check{$_},"), "/* $_ */\n"; + print "\t", &tab(3, "MEMBER_TO_FPTR(Perl_$check{$_}),"), "\t/* $_ */\n"; } print <<END; |