diff options
Diffstat (limited to 'flang/test/Lower/OpenMP/Todo/omp-declarative-allocate-align.f90')
| -rw-r--r-- | flang/test/Lower/OpenMP/Todo/omp-declarative-allocate-align.f90 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/flang/test/Lower/OpenMP/Todo/omp-declarative-allocate-align.f90 b/flang/test/Lower/OpenMP/Todo/omp-declarative-allocate-align.f90 new file mode 100644 index 000000000000..d0ed0cbb4c83 --- /dev/null +++ b/flang/test/Lower/OpenMP/Todo/omp-declarative-allocate-align.f90 @@ -0,0 +1,10 @@ +! This test checks lowering of OpenMP allocate Directive with align clause. + +// RUN: not flang -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s + +program main + integer :: x + + // CHECK: not yet implemented: OpenMPDeclarativeAllocate + !$omp allocate(x) align(32) +end |
