Skip to content

Commit 438f700

Browse files
[mlir] Fix gcc-5 build in ViewOpGraph.cpp
Differential Revision: https://reviews.llvm.org/D107458
1 parent b44eb5a commit 438f700

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Transforms/ViewOpGraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class PrintOpPass : public ViewOpGraphPassBase<PrintOpPass> {
120120
void emitAttrList(raw_ostream &os, const AttributeMap &map) {
121121
os << "[";
122122
interleaveComma(map, os, [&](const auto &it) {
123-
os << attrStmt(it.getKey(), it.getValue());
123+
os << this->attrStmt(it.getKey(), it.getValue());
124124
});
125125
os << "]";
126126
}

0 commit comments

Comments
 (0)