Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 90cf2c7

Browse files
author
Sven Verdoolaege
committed
tmp
1 parent e87bede commit 90cf2c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tc/core/polyhedral/scop.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ScopUPtr Scop::makeScop(
5151

5252
halide2isl::SymbolTable sym = halide2isl::makeSymbolTable(components);
5353

54-
isl::space paramSpace = halide2isl::makeParamSpace(ctx, sym.params);
54+
auto paramSpace = halide2isl::makeParamSpace(ctx, sym.params);
5555

5656
ScopUPtr scop(new Scop());
5757
scop->halide.params = sym.params;
@@ -518,7 +518,7 @@ const Halide::OutputImageParam& Scop::findArgument(isl::id id) const {
518518
isl::aff Scop::makeIslAffFromStmtExpr(isl::id stmtId, const Halide::Expr& e)
519519
const {
520520
auto domain = halide.domains.at(stmtId);
521-
auto aff = halide2isl::makeIslAffFromExpr(domain.paramSpace, e);
521+
isl::aff aff = halide2isl::makeIslAffFromExpr(domain.paramSpace, e);
522522
aff = aff.unbind_params_insert_domain(domain.tuple);
523523
return aff;
524524
}

0 commit comments

Comments
 (0)