12 lines
467 B
Text
12 lines
467 B
Text
|
// RUN: not fir-opt --fir-to-llvm-ir="target=x86_64-unknown-linux-gnu" %s 2>&1 | FileCheck %s
|
||
|
|
||
|
// Test `fir.unboxproc` conversion to llvm.
|
||
|
// Not implemented yet.
|
||
|
// Currently fails since coversion for boxproc type is not implemented.
|
||
|
|
||
|
// CHECK: failed to legalize operation 'func.func'
|
||
|
func.func @boxing_match(%bproc: !fir.boxproc<(i32) -> ()>) {
|
||
|
%ubproc:2 = fir.unboxproc %bproc : (!fir.boxproc<(i32) -> ()>) -> ((i32) -> (), !fir.ref<tuple<i32,f64>>)
|
||
|
return
|
||
|
}
|