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

Commit b7a8448

Browse files
author
Sven Verdoolaege
committed
operator<<(std::ostream& os, const Scop& s): add missing closing braces
1 parent 3a391ea commit b7a8448

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tc/core/polyhedral/scop.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,12 @@ std::ostream& operator<<(std::ostream& os, const Scop& s) {
103103
for (auto i : s.halide.idx) {
104104
os << i << ", ";
105105
}
106+
os << "}, ";
106107
os << "reductionIdx: { ";
107108
for (auto i : s.halide.reductionIdx) {
108109
os << i << ", ";
109110
}
111+
os << "}, ";
110112
os << "params: {";
111113
for (auto p : s.halide.params) {
112114
os << p.type() << " " << p.name() << ", ";

0 commit comments

Comments
 (0)