diff options
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"; } |