summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-12-10 18:33:53 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-12-10 18:33:53 +0000
commit7e0e7afedd94fe242b9d912ceebe511cf90e118a (patch)
tree46a0b36798a82009485d8017df9cc15b458d05b2 /op.h
parentc6ee37c52f2ca9e544af4866d4237b0404bcddb7 (diff)
downloadperl-7e0e7afedd94fe242b9d912ceebe511cf90e118a.tar.gz
Start overhauling compiler. It was working at least minimally
right up until the final tweak of B.xs to add threadsv_names at which point building it provokes a seg fault in perl while doing the xsubpp :-(. p4raw-id: //depot/perl@357
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/op.h b/op.h
index fbb5b8c8dd..471ace0760 100644
--- a/op.h
+++ b/op.h
@@ -274,6 +274,8 @@ struct loop {
#define OA_DEFGV 128
/* The next 4 bits encode op class information */
+#define OA_CLASS_MASK (15 << 8)
+
#define OA_BASEOP (0 << 8)
#define OA_UNOP (1 << 8)
#define OA_BINOP (2 << 8)