From 041c1a236adc7fba9323bf915d40b86b247edf2a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 6 Sep 2020 13:10:02 -0600 Subject: Use macro instead of its expansion We already have a macro that expands to what this code does; it's clearer to use it. --- op.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'op.h') 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)); \ -- cgit v1.2.1