Remove comment

This commit is contained in:
Sofia 2023-08-02 17:03:21 +03:00
parent a196857dd6
commit 297ff832b5

View File

@ -73,14 +73,6 @@ impl IRModule {
IRFunction { IRFunction {
value: Value(return_type, anon_func), 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);
} }
} }
} }