[TileSwizzle] Make the dump and variable name match. (NFC) (#18821)
The output field is permutation, but not swizzle. The revision replaces
the string with field's name.
diff --git a/compiler/src/iree/compiler/Codegen/Common/TileSwizzle.cpp b/compiler/src/iree/compiler/Codegen/Common/TileSwizzle.cpp
index 639864f..2899523 100644
--- a/compiler/src/iree/compiler/Codegen/Common/TileSwizzle.cpp
+++ b/compiler/src/iree/compiler/Codegen/Common/TileSwizzle.cpp
@@ -41,7 +41,7 @@
const TileSwizzle &swizzle) {
os << "{expandShape = [";
llvm::interleaveComma(swizzle.expandShape, os);
- os << "], swizzle = [";
+ os << "], permutation = [";
llvm::interleaveComma(swizzle.permutation, os);
os << "]}";
return os;