From 036d1f9673100b2b2454a5315cf023ce7ad20775 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 15 Nov 2005 17:58:44 +0000 Subject: [PATCH] bootstrap fix --- library/compiler/linearizer.factor | 3 +-- library/compiler/ppc/generator.factor | 14 -------------- library/compiler/vops.factor | 5 ----- library/compiler/x86/generator.factor | 8 -------- library/ui/events.factor | 24 +++++++++++++++++++----- library/ui/hand.factor | 9 --------- library/ui/load.factor | 2 +- library/ui/world.factor | 19 +++++-------------- native/debug.c | 2 -- native/run.c | 7 ------- native/run.h | 3 --- native/unix/signal.c | 18 +++++------------- 12 files changed, 31 insertions(+), 83 deletions(-) diff --git a/library/compiler/linearizer.factor b/library/compiler/linearizer.factor index 1f76c65bdc..b27fc4c274 100644 --- a/library/compiler/linearizer.factor +++ b/library/compiler/linearizer.factor @@ -10,7 +10,7 @@ GENERIC: linearize* ( node -- ) #! Transform dataflow IR into linear IR. This strips out #! stack flow information, and flattens conditionals into #! jumps and labels. - [ %prologue , %irq , linearize* ] { } make ; + [ %prologue , linearize* ] { } make ; : linearize-next node-successor linearize* ; @@ -20,7 +20,6 @@ M: node linearize* ( node -- ) linearize-next ; M: #label linearize* ( node -- )