Skip to content

Commit ad7f4c1

Browse files
author
Nicolas Vasilache
committed
[mlir][Linalg] NFC - Hotfix for gcc-5 build
1 parent 66a35d3 commit ad7f4c1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

mlir/lib/Dialect/Linalg/EDSC/Builders.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,16 @@ operator()(std::function<void(void)> fun) {
8888
}
8989

9090
template <>
91-
GenericLoopNestRangeBuilder<loop::ForOp>::GenericLoopNestRangeBuilder(
92-
ArrayRef<edsc::ValueHandle *> ivs, ArrayRef<Value> ranges) {
91+
mlir::edsc::GenericLoopNestRangeBuilder<
92+
loop::ForOp>::GenericLoopNestRangeBuilder(ArrayRef<edsc::ValueHandle *> ivs,
93+
ArrayRef<Value> ranges) {
9394
builder = std::make_unique<LoopNestRangeBuilder>(ivs, ranges);
9495
}
9596

9697
template <>
97-
GenericLoopNestRangeBuilder<AffineForOp>::GenericLoopNestRangeBuilder(
98-
ArrayRef<ValueHandle *> ivs, ArrayRef<Value> ranges) {
98+
mlir::edsc::GenericLoopNestRangeBuilder<
99+
AffineForOp>::GenericLoopNestRangeBuilder(ArrayRef<ValueHandle *> ivs,
100+
ArrayRef<Value> ranges) {
99101
SmallVector<ValueHandle, 4> lbs;
100102
SmallVector<ValueHandle, 4> ubs;
101103
SmallVector<int64_t, 4> steps;

0 commit comments

Comments
 (0)