aboutsummaryrefslogtreecommitdiffstats
path: root/ast.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-28 10:26:03 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-28 10:26:03 -0400
commit08f4a92102c9739e0736965186814e856ff727a1 (patch)
treefa081265c98ddf99570f4f77b99dbb92d0bec440 /ast.hpp
parent8a6a7a43116021c38d09e590f236be6ebd79eca5 (diff)
cache sp, minor refactors
Diffstat (limited to 'ast.hpp')
-rw-r--r--ast.hpp2
1 files changed, 1 insertions, 1 deletions
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<std::unique_ptr<BaseAST>> 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;