From e3c4aafc2ff1c0c698fb25c8e4c7d665375ed3c9 Mon Sep 17 00:00:00 2001 From: Sergi Siso Date: Thu, 3 Oct 2024 14:33:08 +0100 Subject: [PATCH] #2730 Fix CI failures --- src/psyclone/psyir/nodes/omp_directives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/psyclone/psyir/nodes/omp_directives.py b/src/psyclone/psyir/nodes/omp_directives.py index 7a149cfe69..6682e5791e 100644 --- a/src/psyclone/psyir/nodes/omp_directives.py +++ b/src/psyclone/psyir/nodes/omp_directives.py @@ -2303,7 +2303,7 @@ def gen_code(self, parent): # Add directive to the f2pygen tree parent.add( DirectiveGen( - parent, "omp", "begin", self.begin_string()[4:], " ".join( + parent, "omp", "begin", self._directive_string, ", ".join( text for text in [default_str, private_str, fprivate_str, schedule_str, self._reduction_string()] if text)))