From bf2b151861975107873faddde439546a831d40f8 Mon Sep 17 00:00:00 2001 From: Amin Abdulrahman Date: Wed, 4 Dec 2024 13:17:30 +0100 Subject: [PATCH] Fix AArch64Example0 example --- example.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/example.py b/example.py index 9043fa24..d592a954 100644 --- a/example.py +++ b/example.py @@ -581,9 +581,7 @@ def __init__(self, var="", arch=AArch64_Neon, target=Target_CortexA55): def core(self,slothy): slothy.config.variable_size=True slothy.config.constraints.stalls_first_attempt=32 - slothy.config.selfcheck = False - slothy.config.allow_useless_instructions = True - slothy.fusion_region("start", "end", ssa=False) + slothy.optimize() class AArch64Example0Equ(Example): def __init__(self, var="", arch=AArch64_Neon, target=Target_CortexA55):