summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-09-02 11:18:15 +0200
committerYves Orton <demerphq@gmail.com>2022-09-07 09:02:11 +0200
commit4e902ad36beb599b19ab29e54e0d2f45019de30e (patch)
tree242fec7c560c80eed797eeb7d2ff8920e9ebe35a /pp.h
parent7f7274faab9ee012b98ba71d9082fa1997ef46aa (diff)
downloadperl-4e902ad36beb599b19ab29e54e0d2f45019de30e.tar.gz
pp.h - put STMT_END on its own line and lined up STMT_START
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/pp.h b/pp.h
index 29dbc76430..65d07ce4d9 100644
--- a/pp.h
+++ b/pp.h
@@ -398,7 +398,7 @@ Does not use C<TARG>. See also C<L</XPUSHu>>, C<L</mPUSHu>> and C<L</PUSHu>>.
# define EXTEND_SKIP(p, n) STMT_START { \
EXTEND_HWM_SET(p, n); \
assert(!_EXTEND_NEEDS_GROW(p,n)); \
- } STMT_END
+ } STMT_END
# define EXTEND(p,n) STMT_START { \
@@ -406,7 +406,8 @@ Does not use C<TARG>. See also C<L</XPUSHu>>, C<L</mPUSHu>> and C<L</PUSHu>>.
if (UNLIKELY(_EXTEND_NEEDS_GROW(p,n))) { \
sp = stack_grow(sp,p,_EXTEND_SAFE_N(n)); \
PERL_UNUSED_VAR(sp); \
- } } STMT_END
+ } \
+ } STMT_END
/* Same thing, but update mark register too. */
# define MEXTEND(p,n) STMT_START { \
EXTEND_HWM_SET(p, n); \
@@ -415,7 +416,8 @@ Does not use C<TARG>. See also C<L</XPUSHu>>, C<L</mPUSHu>> and C<L</PUSHu>>.
sp = stack_grow(sp,p,_EXTEND_SAFE_N(n)); \
mark = PL_stack_base + markoff; \
PERL_UNUSED_VAR(sp); \
- } } STMT_END
+ } \
+ } STMT_END
#endif