forked from OSchip/llvm-project
8 lines
133 B
MLIR
8 lines
133 B
MLIR
|
// RUN: mlir-opt -verify-diagnostics %s | FileCheck %s
|
||
|
|
||
|
func @omp_barrier() -> () {
|
||
|
// CHECK: omp.barrier
|
||
|
omp.barrier
|
||
|
return
|
||
|
}
|