blob: d080410aeb469f06f4dc7c7754354099c7755950 [file] [log] [blame]
// RUN: iree-compile --iree-hal-target-backends=vmvx %s | iree-run-module --module=- --function=null_values --input="(null)" | FileCheck %s
// CHECK-LABEL: EXEC @null_values
func.func @null_values(%arg0: !vm.list<i32>) -> (i32, !vm.list<i32>) {
%c123 = arith.constant 123 : i32
return %c123, %arg0 : i32, !vm.list<i32>
}
// CHECK: result[0]: i32=123
// CHECK: result[1]: (null)