From c0c93581c4a2cb65e1afa52c48b18a39e69cb4fb Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 8 Apr 2014 14:10:36 +0200 Subject: [PATCH] Remove obsolete comment in compile-bytecode.scm * module/language/cps/compile-bytecode.scm (optimize): Remove an obsolete comment. --- module/language/cps/compile-bytecode.scm | 2 -- 1 file changed, 2 deletions(-) diff --git a/module/language/cps/compile-bytecode.scm b/module/language/cps/compile-bytecode.scm index 3d95b8c4a..bf87f2c22 100644 --- a/module/language/cps/compile-bytecode.scm +++ b/module/language/cps/compile-bytecode.scm @@ -81,8 +81,6 @@ ;; * Abort contification: turning abort primcalls into continuation ;; calls, and eliding prompts if possible. ;; - ;; * Common subexpression elimination. Desperately needed. - ;; ;; * Loop peeling. Unrolls the first round through a loop if the ;; loop has effects that CSE can work on. Requires effects ;; analysis. When run before CSE, loop peeling is the equivalent