[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Integration / vector-always.f90
blob7216698f901c1fe7bc2c724b1ab1be5b07823a61
1 ! RUN: %flang_fc1 -emit-llvm -o - %s | FileCheck %s
3 ! CHECK-LABEL: vector_always
4 subroutine vector_always
5 integer :: a(10)
6 !dir$ vector always
7 ! CHECK: br i1 {{.*}}, label {{.*}}, label {{.*}}, !llvm.loop ![[ANNOTATION:.*]]
8 do i=1,10
9 a(i)=i
10 end do
11 end subroutine vector_always
13 ! CHECK: ![[ANNOTATION]] = distinct !{![[ANNOTATION]], ![[VECTORIZE:.*]]}
14 ! CHECK: ![[VECTORIZE]] = !{!"llvm.loop.vectorize.enable", i1 true}