mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 23:06:34 +00:00
8 lines
277 B
MLIR
8 lines
277 B
MLIR
// RUN: mlir-translate --export-smtlib %s --split-input-file --verify-diagnostics
|
|
|
|
smt.solver () : () -> () {
|
|
%0 = smt.bv.constant #smt.bv<5> : !smt.bv<16>
|
|
// expected-error @below {{operation not supported for SMTLIB emission}}
|
|
%1 = smt.bv2int %0 signed : !smt.bv<16>
|
|
}
|