diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-25 07:52:31 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-25 07:52:31 -0400 |
commit | b16e418091bad151ed064b56f6c4d195242044d7 (patch) | |
tree | 42245185ff6bc9839a80ceff29ecc2e4164e0ab1 /ast.cpp | |
parent | 95901f3a5fa0ec18128030c915d1d94bade5de94 (diff) |
remove unnecessary setinsertpoint
Diffstat (limited to 'ast.cpp')
-rw-r--r-- | ast.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -163,7 +163,6 @@ ThunkAST::ThunkAST(LLVMState& llvmState, std::string n): BaseAST(n) body = llvm::BasicBlock::Create(llvmState.ctx, "body", func); env = func->getArg(0); - llvmState.builder.SetInsertPoint(entry); llvmState.builder.SetInsertPoint(body); } |