File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1321,15 +1321,15 @@ object type. Exposed to perl code via Internals::SvREADONLY().
13211321
13221322
13231323#if defined (DEBUGGING ) && defined(PERL_USE_GCC_BRACE_GROUPS )
1324- # define SvTAIL (sv ) ({ const SV *const _svtail = (const SV *)(sv); \
1325- assert(SvTYPE(_svtail ) != SVt_PVAV); \
1326- assert(SvTYPE(_svtail ) != SVt_PVHV); \
1327- assert(!(SvFLAGS(_svtail ) & (SVf_NOK|SVp_NOK))); \
1328- assert(SvVALID(_svtail )); \
1329- ((XPVNV*)SvANY(_svtail ))->xnv_u.xnv_bm_tail; \
1324+ # define SvTAIL (sv ) ({ const SV *const svtail_ = (const SV *)(sv); \
1325+ assert(SvTYPE(svtail_ ) != SVt_PVAV); \
1326+ assert(SvTYPE(svtail_ ) != SVt_PVHV); \
1327+ assert(!(SvFLAGS(svtail_ ) & (SVf_NOK|SVp_NOK))); \
1328+ assert(SvVALID(svtail_ )); \
1329+ ((XPVNV*)SvANY(svtail_ ))->xnv_u.xnv_bm_tail; \
13301330 })
13311331#else
1332- # define SvTAIL (_svtail ) (((XPVNV*)SvANY(_svtail ))->xnv_u.xnv_bm_tail)
1332+ # define SvTAIL (svtail_ ) (((XPVNV*)SvANY(svtail_ ))->xnv_u.xnv_bm_tail)
13331333#endif
13341334
13351335/* Does the SV have a Boyer-Moore table attached as magic?
You can’t perform that action at this time.
0 commit comments