]> gitweb.factorcode.org Git - factor.git/blob - basis/compiler/tree/cleanup/cleanup-docs.factor
Docs: stub docs for some compiler-related words
[factor.git] / basis / compiler / tree / cleanup / cleanup-docs.factor
1 USING: help.markup help.syntax ;
2 IN: compiler.tree.cleanup
3
4 ARTICLE: "compiler.tree.cleanup" "Cleanup Phase"
5 "A phase run after propagation to finish the job, so to speak. Codifies speculative inlining decisions, deletes branches marked as never taken, and flattens local recursive blocks that do not call themselves." ;
6
7 HELP: cleanup
8 { $description "Main entry point for the cleanup optimization phase." } ;