From b0fa9104c03fac23b81ec2c3620219e0f1774349 Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Tue, 12 Dec 2023 23:38:56 -0500 Subject: [PATCH] WIP: disable both optimizations to get benchmark results --- library/_compiler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/_compiler.py b/library/_compiler.py index b17272072..c1853dc79 100644 --- a/library/_compiler.py +++ b/library/_compiler.py @@ -398,8 +398,8 @@ def process_one_block(block, modify=False): def getCode(self): # Do this first; it can't (yet?) handle LOAD_FAST_REVERSE_UNCHECKED et # al. - self.optimizeDeadStores() - self.optimizeLoadFast() + # self.optimizeDeadStores() + # self.optimizeLoadFast() return super().getCode()