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

Commit 54017c6

Browse files
author
Sven Verdoolaege
committed
tighten_launch_bounds.cc: add missing newline in error message
1 parent 82871f7 commit 54017c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc/core/polyhedral/cuda/tighten_launch_bounds.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ size_t maxValue(const Scop& scop, const MappingIdType& id) {
8888
LOG_IF(WARNING, min > 0)
8989
<< "Opportunity for tightening launch bounds with shifting -> min:"
9090
<< min;
91-
TC_CHECK(max < sizetMax) << "missing mapping to " << id << *root;
91+
TC_CHECK(max < sizetMax) << "missing mapping to " << id << "\n" << *root;
9292
// Inclusive range needs + 1 to translate to sizes
9393
return max + 1;
9494
}

0 commit comments

Comments
 (0)