[mlir][py] Enable loading only specified dialects during creation. (#121421)
[llvm-project.git] / mlir / test / IR / test-take-body.mlir
blob7edb3b8625376f7ae4ed22ea99e8f9ae2729c624
1 // RUN: mlir-opt -allow-unregistered-dialect %s --test-take-body -split-input-file
3 func.func @foo() {
4   %0 = "test.foo"() : () -> i32
5   cf.br ^header
7 ^header:
8   cf.br ^body
10 ^body:
11   "test.use"(%0) : (i32) -> ()
12   cf.br ^header
15 func.func private @bar() {
16   return
19 // CHECK-LABEL: func @foo
20 // CHECK-NEXT: return
22 // CHECK-LABEL: func private @bar()
23 // CHECK-NOT: {