Skip to content

Commit 71b8598

Browse files
authored
Fix compilation (#80)
1 parent 5695b35 commit 71b8598

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jit/mlir.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ uint64_t DepManager::handleResult(::mlir::OpBuilder &builder) {
312312
int vtExeSym, vtSHARPYClass;
313313
VT(VT_classdef, "sharpy", &vtSHARPYClass);
314314
VT(VT_funcdef, "execute", vtSHARPYClass, &vtExeSym);
315-
auto s = builder.create<::mlir::arith::ConstantOp>(
315+
::mlir::Value s = builder.create<::mlir::arith::ConstantOp>(
316316
loc, builder.getI32IntegerAttr(vtExeSym));
317317
auto end = builder.create<::mlir::func::CallOp>(
318318
builder.getUnknownLoc(), "VT_end",

0 commit comments

Comments
 (0)