From 36a1f3ead92083ff4cf0966d08fe603c6660c0b2 Mon Sep 17 00:00:00 2001 From: Ethan Uppal <113849268+ethanuppal@users.noreply.github.com> Date: Sat, 11 May 2024 22:05:42 -0400 Subject: [PATCH] Remove ir gen disclaimer --- lib/frontend/ir_gen.mli | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/frontend/ir_gen.mli b/lib/frontend/ir_gen.mli index 57fd603..4fd151c 100644 --- a/lib/frontend/ir_gen.mli +++ b/lib/frontend/ir_gen.mli @@ -1,7 +1,3 @@ (** [generate ast] is a list of control flow graphs, where each control flow - graph represents one top-level function. - - TEMPORARY: only one function is allowed at the top level. It must be called - main. Only local variables, print statements, mathematical expressions, and - if statements are supported. *) + graph represents one top-level function. *) val generate : Ast.prog -> Cfg.t list