[goalc] reduce compiler memory usage (#2247)

This commit is contained in:
water111
2023-02-24 18:32:30 -05:00
committed by GitHub
parent e10ca97891
commit e2b7e5c001
25 changed files with 206 additions and 159 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ RegVal* LambdaVal::to_reg(const goos::Object& form, Env* fe) {
RegVal* InlinedLambdaVal::to_reg(const goos::Object& form, Env* fe) {
throw std::runtime_error("Cannot put InlinedLambdaVal in a register.");
return lv->to_reg(form, fe);
return nullptr;
}
RegVal* FloatConstantVal::to_reg(const goos::Object& form, Env* fe) {