summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-09-06 13:10:02 -0600
committerKarl Williamson <khw@cpan.org>2020-09-09 19:56:34 -0600
commit041c1a236adc7fba9323bf915d40b86b247edf2a (patch)
tree8bb85ba39774e0732548836b140d32fea7753995 /op.h
parentb440465d5a4b3b04a3503d257418cf65ade0cbdb (diff)
downloadperl-041c1a236adc7fba9323bf915d40b86b247edf2a.tar.gz
Use macro instead of its expansion
We already have a macro that expands to what this code does; it's clearer to use it.
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.h b/op.h
index 12d359529d..e286f8b304 100644
--- a/op.h
+++ b/op.h
@@ -396,7 +396,7 @@ struct pmop {
#else
# define PmopSTASH(o) \
(((o)->op_pmflags & PMf_ONCE) ? (o)->op_pmstashstartu.op_pmstash : NULL)
-# if defined (DEBUGGING) && defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
+# if defined (DEBUGGING) && defined(PERL_USE_GCC_BRACE_GROUPS)
# define PmopSTASH_set(o,hv) ({ \
assert((o)->op_pmflags & PMf_ONCE); \
((o)->op_pmstashstartu.op_pmstash = (hv)); \