[CodeGen] Fix a memory leak

This commit is contained in:
Kazu Hirata 2021-12-24 19:51:10 -08:00
parent 40fae4d8fc
commit a8cbddc994
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ IslAstInfo IslAstAnalysis::run(Scop &S, ScopAnalysisManager &SAM,
return SAM.getResult<DependenceAnalysis>(S, SAR).getDependences(Lvl);
};
return std::move(*runIslAst(S, GetDeps).release());
return std::move(*runIslAst(S, GetDeps));
}
static __isl_give isl_printer *cbPrintUser(__isl_take isl_printer *P,