From 5f641134848b72694dd961d0b9cc8444b56c21bf Mon Sep 17 00:00:00 2001 From: Chris Pressey Date: Fri, 6 Apr 2018 13:27:40 +0100 Subject: [PATCH] 1-line bugfix. Now the optimizer does do the expected good job. --- src/sixtypical/fallthru.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sixtypical/fallthru.py b/src/sixtypical/fallthru.py index f33248c..85024bd 100644 --- a/src/sixtypical/fallthru.py +++ b/src/sixtypical/fallthru.py @@ -30,6 +30,7 @@ class FallthruAnalyzer(object): return chain seen.add(next) chain.append(next) + routine_name = next def serialize(self): pending_routines = copy(self.fallthru_map)