diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-07 07:10:52 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-07 07:10:52 +0000 |
commit | a27f85b3b5aa22c0f009ddabe35728717aaebf3d (patch) | |
tree | 147c75d0424877da963b4c0f779d3a3a3840540b /opcode.pl | |
parent | af8c498a3c5921fd79e24d6a33b8c04cc35f453b (diff) | |
download | perl-a27f85b3b5aa22c0f009ddabe35728717aaebf3d.tar.gz |
add do-not-edit caveats for files generated by opcode.pl
(suggested by Hugo van der Sanden)
p4raw-id: //depot/perl@3633
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -29,6 +29,11 @@ while (<DATA>) { $i = 0; print <<"END"; +/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!! + This file is built by opcode.pl from its data. Any changes made here + will be lost! +*/ + #define Perl_pp_i_preinc Perl_pp_preinc #define Perl_pp_i_predec Perl_pp_predec #define Perl_pp_i_postinc Perl_pp_postinc @@ -216,6 +221,24 @@ unlink "pp.sym"; open PP, '>pp_proto.h' or die "Error creating pp_proto.h: $!"; open PPSYM, '>pp.sym' or die "Error creating pp.sym: $!"; +print PP <<"END"; +/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!! + This file is built by opcode.pl from its data. Any changes made here + will be lost! +*/ + +END + +print PPSYM <<"END"; +# +# !!!!!!! DO NOT EDIT THIS FILE !!!!!!! +# This file is built by opcode.pl from its data. Any changes made here +# will be lost! +# + +END + + for (sort keys %ckname) { print PP "PERL_CKDEF(Perl_$_)\n"; print PPSYM "Perl_$_\n"; |