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

Commit d3f8386

Browse files
author
Sven Verdoolaege
committed
ScheduleTree::operator==: fix error message
There is no isl_node_type.
1 parent bc32325 commit d3f8386

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc/core/polyhedral/schedule_tree.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ bool ScheduleTree::operator==(const ScheduleTree& other) const {
361361
return false;
362362
}
363363
TC_CHECK(!other.elemAs<ScheduleTreeElemSet>())
364-
<< "NYI: isl_node_type::set comparison";
364+
<< "NYI: ScheduleTreeType::Set comparison";
365365
for (size_t i = 0; i < children_.size(); ++i) {
366366
if (*children_[i] != *other.children_[i]) {
367367
return false;

0 commit comments

Comments
 (0)