From 297ff832b5b404a558f3b409cf43ef2a15b1ee44 Mon Sep 17 00:00:00 2001 From: sofia Date: Wed, 2 Aug 2023 17:03:21 +0300 Subject: [PATCH] Remove comment --- src/codegen.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/codegen.rs b/src/codegen.rs index 873425d..89cf4e2 100644 --- a/src/codegen.rs +++ b/src/codegen.rs @@ -73,14 +73,6 @@ impl IRModule { IRFunction { value: Value(return_type, anon_func), } - - // // Create a basic block in the function and set our builder to generate - // // code in it. - // let bb = LLVMAppendBasicBlockInContext(self.context, anon_func, cstr!("entry")); - // LLVMPositionBuilderAtEnd(self.builder, bb); - - // // Emit a `ret i64` into the function to return the computed sum. - // LLVMBuildRet(self.builder, ret.1); } } }