From 08f4a92102c9739e0736965186814e856ff727a1 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 28 Jun 2024 10:26:03 -0400 Subject: cache sp, minor refactors --- ast.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ast.hpp') diff --git a/ast.hpp b/ast.hpp index 380a38f..287fd03 100644 --- a/ast.hpp +++ b/ast.hpp @@ -66,13 +66,13 @@ struct CallAST : public BaseAST struct ThunkAST : public BaseAST { static int tcount; - static int envidx; std::list> ast; llvm::IRBuilderBase::InsertPoint parent; llvm::Function *func; llvm::BasicBlock *entry, *body; llvm::Value *env; + llvm::Value *lastSp; explicit ThunkAST(); llvm::Value *codegen(LLVMState& llvmState) const override; -- cgit v1.2.3