diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-28 10:26:03 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-06-28 10:26:03 -0400 |
commit | 08f4a92102c9739e0736965186814e856ff727a1 (patch) | |
tree | fa081265c98ddf99570f4f77b99dbb92d0bec440 /ast.hpp | |
parent | 8a6a7a43116021c38d09e590f236be6ebd79eca5 (diff) |
cache sp, minor refactors
Diffstat (limited to 'ast.hpp')
-rw-r--r-- | ast.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |