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

Commit 512f9c7

Browse files
author
Sven Verdoolaege
committed
rename add_range to addRange
The original name didn't follow the coding conventions.
1 parent 4fd6453 commit 512f9c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tc/core/polyhedral/memory_promotion.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ScopedFootprint outputRanges(isl::map access) {
8080

8181
// Given a set space, construct a map space with the input as domain and
8282
// a range of the given size.
83-
isl::space add_range(isl::space space, unsigned dim) {
83+
isl::space addRange(isl::space space, unsigned dim) {
8484
auto range = space.params().unnamed_set_from_params(dim);
8585
return space.map_from_domain_and_range(range);
8686
}
@@ -456,7 +456,7 @@ isl::multi_aff dropDummyTensorDimensions(
456456
}
457457
}
458458

459-
space = add_range(space, list.size());
459+
space = addRange(space, list.size());
460460
return isl::multi_aff(space, list);
461461
}
462462

0 commit comments

Comments
 (0)