]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/compiler/cfg/linear-scan/allocation/splitting/splitting.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / basis / compiler / cfg / linear-scan / allocation / splitting / splitting.factor
index 1914c13cf0f3328cea90be3d83774586d7536d46..6db04c7d84b783cbc632771015310e4abec7b229 100644 (file)
@@ -40,11 +40,11 @@ ERROR: splitting-atomic-interval ;
 
 : check-split ( live-interval n -- )
     check-allocation? get [
-        [ [ start>> ] dip > [ throw-splitting-too-early ] when ]
-        [ [ end>> ] dip < [ throw-splitting-too-late ] when ]
+        [ [ start>> ] dip > [ splitting-too-early ] when ]
+        [ [ end>> ] dip < [ splitting-too-late ] when ]
         [
             drop [ end>> ] [ start>> ] bi =
-            [ throw-splitting-atomic-interval ] when
+            [ splitting-atomic-interval ] when
         ] 2tri
     ] [ 2drop ] if ; inline