The move of the bytecode serialization to be tablegen driven in https://reviews.llvm.org/D144820 added a new condition in the reading path that forbid 0-sized integer, even though we still produce them. Fix #62920 Differential Revision: https://reviews.llvm.org/D151372
6 lines
151 B
MLIR
6 lines
151 B
MLIR
// RUN: mlir-opt -emit-bytecode %s | mlir-opt | FileCheck %s
|
|
|
|
// CHECK: module
|
|
// CHECK: foo.asdf = 0 : i0
|
|
module attributes { foo.asdf = 0 : i0 } { }
|