summaryrefslogtreecommitdiff
path: root/opcode.pl
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-09 05:37:48 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-09 05:37:48 +0000
commit15e52e56ffc1b4b0632038d47561373c5ca610c4 (patch)
tree15aaf7ccef22d054555bbacbab3696f48ba8aab3 /opcode.pl
parentd06ea78cdb5afedf2e1a85ff54e3bfc5c519b3c5 (diff)
downloadperl-15e52e56ffc1b4b0632038d47561373c5ca610c4.tar.gz
get it building again on win32
p4raw-id: //depot/perl@1394
Diffstat (limited to 'opcode.pl')
-rwxr-xr-xopcode.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/opcode.pl b/opcode.pl
index 8fa6e29173..fe6e2021b5 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -211,6 +211,7 @@ close OC or die "Error closing opcode.h: $!";
open PP, '>pp_proto.h' or die "Error creating pp_proto.h: $!";
for (@ops) {
+ next if /^i_(pre|post)(inc|dec)$/;
print PP "PPDEF(pp_$_)\n";
}