[Mlir-commits] [mlir] afce975 - Fix duplicate quant bytecode test to actually test storage-type-only case (#190194)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Apr 10 17:52:25 PDT 2026
Author: German Gambon
Date: 2026-04-11T00:52:19Z
New Revision: afce975a244b5244949c1b58542602bddf17b1a6
URL: https://github.com/llvm/llvm-project/commit/afce975a244b5244949c1b58542602bddf17b1a6
DIFF: https://github.com/llvm/llvm-project/commit/afce975a244b5244949c1b58542602bddf17b1a6.diff
LOG: Fix duplicate quant bytecode test to actually test storage-type-only case (#190194)
Fixes a copy paste error
Added:
Modified:
mlir/test/Dialect/Quant/Bytecode/types.mlir
Removed:
################################################################################
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>
} {}
//===----------------------------------------------------------------------===//
More information about the Mlir-commits
mailing list