blob: d645beb83776cabc4a04dfee10a66d9c79a53b74 [file] [log] [blame]
// RUN: mlir-opt -emit-bytecode -allow-unregistered-dialect %s | mlir-opt -allow-unregistered-dialect | FileCheck %s
// verify that we round-trip an op without a dialect name (as long as we support this)
func.func @map1d(%lb: index, %ub: index, %step: index) {
// CHECK: "new_processor_id_and_range"
%0:2 = "new_processor_id_and_range"() : () -> (index, index)
return
}