[Mlir-commits] [mlir] Fix duplicate quant bytecode test to actually test storage-type-only case (PR #190194)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Apr 2 08:28:13 PDT 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: German Gambon (ggambon)
<details>
<summary>Changes</summary>
Fixes a copy paste error
---
Full diff: https://github.com/llvm/llvm-project/pull/190194.diff
1 Files Affected:
- (modified) mlir/test/Dialect/Quant/Bytecode/types.mlir (+2-2)
``````````diff
diff --git a/mlir/test/Dialect/Quant/Bytecode/types.mlir b/mlir/test/Dialect/Quant/Bytecode/types.mlir
index 8c79b757eeb19..a2eced3ee060d 100644
--- a/mlir/test/Dialect/Quant/Bytecode/types.mlir
+++ b/mlir/test/Dialect/Quant/Bytecode/types.mlir
@@ -18,8 +18,8 @@ module @parseAnyNoExpressedType attributes {
// CHECK-LABEL: parseAnyOnlyStorageType
module @parseAnyOnlyStorageType attributes {
- // CHECK: bytecode.test = !quant.any<i8<-8:7>>
- bytecode.test = !quant.any<i8<-8:7>>
+ // CHECK: bytecode.test = !quant.any<i8>
+ bytecode.test = !quant.any<i8>
} {}
//===----------------------------------------------------------------------===//
``````````
</details>
https://github.com/llvm/llvm-project/pull/190194
More information about the Mlir-commits
mailing list