diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-12-10 18:33:53 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-12-10 18:33:53 +0000 |
commit | 7e0e7afedd94fe242b9d912ceebe511cf90e118a (patch) | |
tree | 46a0b36798a82009485d8017df9cc15b458d05b2 /op.h | |
parent | c6ee37c52f2ca9e544af4866d4237b0404bcddb7 (diff) | |
download | perl-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |