From 515da025cf626937f79e1534a0d572618b5cd134 Mon Sep 17 00:00:00 2001 From: Amin Abdulrahman Date: Thu, 17 Oct 2024 09:30:03 +0200 Subject: [PATCH] Fix typo in fusion_loop --- slothy/core/slothy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slothy/core/slothy.py b/slothy/core/slothy.py index 2fbfdf8a..b86b6a20 100644 --- a/slothy/core/slothy.py +++ b/slothy/core/slothy.py @@ -374,7 +374,7 @@ def fusion_loop(self, loop_lbl, **kwargs): indentation = AsmHelper.find_indentation(body) body_ssa = SourceLine.read_multiline(loop.start(loop_cnt)) + \ - SourceLine.apply_indentation(self._fusion_core(pre, body, late, logger, **kwargs), indentation) + \ + SourceLine.apply_indentation(self._fusion_core(pre, body, post, logger, **kwargs), indentation) + \ SourceLine.read_multiline(loop.end(other_data)) self.source = pre + body_ssa + post