aboutsummaryrefslogtreecommitdiffstats
path: root/ast.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-25 07:52:31 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-25 07:52:31 -0400
commitb16e418091bad151ed064b56f6c4d195242044d7 (patch)
tree42245185ff6bc9839a80ceff29ecc2e4164e0ab1 /ast.cpp
parent95901f3a5fa0ec18128030c915d1d94bade5de94 (diff)
remove unnecessary setinsertpoint
Diffstat (limited to 'ast.cpp')
-rw-r--r--ast.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/ast.cpp b/ast.cpp
index c7a9309..0e2d8c5 100644
--- a/ast.cpp
+++ b/ast.cpp
@@ -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);
}