diff options
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; |