diff --git a/compiler/src/iree/compiler/Dialect/Stream/IR/StreamTypes.cpp b/compiler/src/iree/compiler/Dialect/Stream/IR/StreamTypes.cpp index 4246ea925c52..6b6b98590e8b 100644 --- a/compiler/src/iree/compiler/Dialect/Stream/IR/StreamTypes.cpp +++ b/compiler/src/iree/compiler/Dialect/Stream/IR/StreamTypes.cpp @@ -231,7 +231,7 @@ void ResourceConfigAttr::print(AsmPrinter &p) const { os << "max_buffer_range = " << getMaxBufferRange() << ", "; os << "min_buffer_range_alignment = " << getMinBufferRangeAlignment() << ", "; os << "index_bits = " << getIndexBits() << ", "; - os << "alias_mutable_bindings = " << getAliasMutableBindings() << ", "; + os << "alias_mutable_bindings = " << (getAliasMutableBindings() ? "true" : "false") << ", "; os << "memory_model = " << stringifyMemoryModel(getMemoryModel()); os << "}>"; }