[Mlir-commits] [mlir] Fix duplicate quant bytecode test to actually test storage-type-only case (PR #190194)

German Gambon llvmlistbot at llvm.org
Thu Apr 2 08:27:22 PDT 2026


https://github.com/ggambon created https://github.com/llvm/llvm-project/pull/190194

Fixes a copy paste error

>From e3e6bb040fc9b1aa44adf2b189878b2f5434ad65 Mon Sep 17 00:00:00 2001
From: German Gambon <ggambon at tesla.com>
Date: Thu, 2 Apr 2026 08:24:59 -0700
Subject: [PATCH] Fix duplicate quant bytecode test to actually test
 storage-type-only case

---
 mlir/test/Dialect/Quant/Bytecode/types.mlir | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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