brintos

brintos / llvm-project-archived public Read only

0
0
Text · 267 B · 7e251cc Raw
10 lines · plain
1// RUN: not toyc-ch3 %s -emit=mlir 2>&12 3// The following IR is not "valid":4// - toy.print should not return a value.5// - toy.print should take an argument.6// - There should be a block terminator.7toy.func @main() {8  %0 = "toy.print"()  : () -> tensor<2x3xf64>9}10