mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 04:46:37 +00:00
8 lines
247 B
MLIR
8 lines
247 B
MLIR
// RUN: mlir-translate --export-smtlib %s --split-input-file --verify-diagnostics
|
|
|
|
smt.solver () : () -> () {
|
|
%0 = smt.int.constant 5
|
|
// expected-error @below {{operation not supported for SMTLIB emission}}
|
|
%1 = smt.int2bv %0 : !smt.bv<4>
|
|
}
|