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 -- )