From 52da9c556a170ed8e5f811c3acd56088baf94c80 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sun, 26 Jun 2022 20:14:19 -0700 Subject: Finish CPS. Wow we actually finished CPS. Next is closure conversion, then codegen, and then we should be able to run some end to end tests. Then we can look at garbage collection, and from there continue building features down the long road to self hosting. --- csc/ir1.csc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csc/ir1.csc') diff --git a/csc/ir1.csc b/csc/ir1.csc index cf745c6..26b885b 100644 --- a/csc/ir1.csc +++ b/csc/ir1.csc @@ -170,7 +170,7 @@ ; body is the name of the clause (??). If the procedure is called with an ; appropriate number of arguments, body is evaluated in tail position. ; Otherwise if there is an alternate, it should be a - ; expression, representing the next clause to try. If alternate is nil, an + ; expression, representing the next clause to try. If alternate is #f, an ; error is signaled. (define-record-type (make-lambda-case arguments rest gensyms body alternate) -- cgit v1.3.1