From 4060308ea762dbf66e7211baa9f55dd292396807 Mon Sep 17 00:00:00 2001 From: Lorenzo Keller Date: Mon, 15 Jun 2026 06:49:28 +0200 Subject: [PATCH] Fix dump of ResourceConfigAttr The parser expects true/false values but the printer was writing 0/1. --- compiler/src/iree/compiler/Dialect/Stream/IR/StreamTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 << "}>"; }