diff options
author | Jim Cromie <jcromie@cpan.org> | 2007-10-01 12:59:43 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-02 12:00:10 +0000 |
commit | e57fbd1f71f640a63a14acad7388e9d89f869e36 (patch) | |
tree | 6650e134490a3501e4941acbf43708ad8b1c9396 /op.h | |
parent | d1029faac9d1305e60db4bf8c9ec1552b40d4f64 (diff) | |
download | perl-e57fbd1f71f640a63a14acad7388e9d89f869e36.tar.gz |
Re: [patch] clean out remnants of DEBUGGING_OPS (was opcode op_type:9)
Message-ID: <470197FF.5040709@gmail.com>
p4raw-id: //depot/perl@32004
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -37,11 +37,7 @@ * which may or may not check number of children). */ -#ifdef DEBUGGING_OPS -#define OPCODE opcode -#else #define OPCODE U16 -#endif #ifdef PERL_MAD # define MADPROP_IN_BASEOP MADPROP* op_madprop; @@ -58,7 +54,7 @@ OP* (CPERLscope(*op_ppaddr))(pTHX); \ MADPROP_IN_BASEOP \ PADOFFSET op_targ; \ - opcode op_type:9; \ + unsigned op_type:9; \ unsigned op_opt:1; \ unsigned op_latefree:1; \ unsigned op_latefreed:1; \ |