# to "know" that op_seq is a U16 and use 65535. Ugh.
my $op_seq = 65535;
-sub AVf_REAL () { 1 }
+ sub define HEf_SVKEY () { -2 }
+
# Look this up here so we can do just a number compare
# rather than looking up the name of every BASEOP in B::OP
my $OP_THREADSV = opnumber('threadsv');
(F) The create routine failed for some reason while trying to process
a B<-e> switch. Maybe your /tmp partition is full, or clobbered.
+ Removed because B<-e> doesn't use temporary files any more.
+
+ =item regexp too big
+
+ (F) The current implementation of regular expressions uses shorts as
+ address offsets within a string. Unfortunately this means that if
+ the regular expression compiles to longer than 32767, it'll blow up.
+ Usually when you want a regular expression this big, there is a better
++way to do it with multiple statements. See L<perlre>.
++
+=item regexp too big
+
+(F) The current implementation of regular expressions uses shorts as
+address offsets within a string. Unfortunately this means that if
+the regular expression compiles to longer than 32767, it'll blow up.
+Usually when you want a regular expression this big, there is a better
way to do it with multiple statements. See L<perlre>.
=back