diff options
author | Brian Fraser <fraserbn@gmail.com> | 2011-11-15 05:42:09 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-03-25 14:08:22 -0700 |
commit | 5db1eb8d3ecc607380cd43267d08149b82822fe9 (patch) | |
tree | 7e87adca6d09b5757f4c116dba6780f8b26deeba /proto.h | |
parent | 70558906b0dcb94c924d98d19c32c8f22f495cde (diff) | |
download | perl-5db1eb8d3ecc607380cd43267d08149b82822fe9.tar.gz |
Label UTF8 cleanup
This meant changing LABEL's definition in perly.y, so most of this
commit is actually from the regened files.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6043,12 +6043,12 @@ STATIC OP* S_docatch(pTHX_ OP *o) __attribute__warn_unused_result__; STATIC bool S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq, HV* hh); -STATIC OP* S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit) +STATIC OP* S_dofindlabel(pTHX_ OP *o, const char *label, STRLEN len, U32 flags, OP **opstack, OP **oplimit) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2) - __attribute__nonnull__(pTHX_3) - __attribute__nonnull__(pTHX_4); + __attribute__nonnull__(pTHX_5) + __attribute__nonnull__(pTHX_6); #define PERL_ARGS_ASSERT_DOFINDLABEL \ assert(o); assert(label); assert(opstack); assert(oplimit) @@ -6063,7 +6063,7 @@ STATIC I32 S_dopoptoeval(pTHX_ I32 startingblock) STATIC I32 S_dopoptogiven(pTHX_ I32 startingblock) __attribute__warn_unused_result__; -STATIC I32 S_dopoptolabel(pTHX_ const char *label) +STATIC I32 S_dopoptolabel(pTHX_ const char *label, STRLEN len, U32 flags) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_DOPOPTOLABEL \ |