-
Notifications
You must be signed in to change notification settings - Fork 577
Not OK: perl 5.00559 on alpha-dec_osf 4.0 (UNINSTALLED) #314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
From [email protected]5_58 broke -DDEBUGGING_OPS. This fixes it. Inline Patch--- MANIFEST.DIST Sun Aug 1 16:16:27 1999
+++ MANIFEST Mon Aug 2 14:08:45 1999
@@ -887,6 +887,7 @@
op.h Opcode syntax tree header
opcode.h Automatically generated opcode header
opcode.pl Opcode header generatore
+opnames.h Automatically generated opcode header
os2/Changes Changelog for OS/2 port
os2/Makefile.SHs Shared library generation for OS/2
os2/OS2/ExtAttr/Changes EA access module
--- opcode.pl.DIST Sun Aug 1 16:30:04 1999
+++ opcode.pl Mon Aug 2 14:08:46 1999
@@ -1,7 +1,8 @@
#!/usr/bin/perl
-unlink "opcode.h";
+unlink "opcode.h", "opnames.h";
open(OC, ">opcode.h") || die "Can't create opcode.h: $!\n";
+open(ON, ">opnames.h") || die "Can't create opnames.h: $!\n";
select OC;
# Read data.
@@ -39,14 +40,23 @@
#define Perl_pp_i_postinc Perl_pp_postinc
#define Perl_pp_i_postdec Perl_pp_postdec
-typedef enum {
END
+
+print ON <<"END";
+/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ This file is built by opcode.pl from its data. Any changes made here
+ will be lost!
+*/
+
+typedef enum opcode {
+END
+
for (@ops) {
- print "\t", &tab(3,"OP_\U$_,"), "/* ", $i++, " */\n";
+ print ON "\t", &tab(3,"OP_\U$_,"), "/* ", $i++, " */\n";
}
-print "\t", &tab(3,"OP_max"), "\n";
-print "} opcode;\n";
-print "\n#define MAXO ", scalar @ops, "\n\n";
+print ON "\t", &tab(3,"OP_max"), "\n";
+print ON "} opcode;\n";
+print ON "\n#define MAXO ", scalar @ops, "\n\n";
# Emit op names and descriptions.
@@ -214,6 +224,7 @@
END
close OC or die "Error closing opcode.h: $!";
+close ON or die "Error closing opnames.h: $!";
unlink "pp_proto.h";
unlink "pp.sym";
--- perl.h.DIST Mon Aug 2 03:04:22 1999
+++ perl.h Mon Aug 2 14:08:46 1999
@@ -1710,6 +1710,7 @@
#include "form.h"
#include "gv.h"
#include "cv.h"
+#include "opnames.h"
#include "op.h"
#include "cop.h"
#include "av.h" Perl Info
|
This was referenced Oct 19, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Migrated from rt.perl.org#1137 (status was 'resolved')
Searchable as RT1137$
The text was updated successfully, but these errors were encountered: