repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Break circular dependency between FIR dialect and utilities
[llvm-project.git]
/
flang
/
test
/
Lower
/
compiler-directive.f90
blob
72d85ba5159a2493215fa1dec4c7c472d569d7e7
1
! RUN: bbc %s -o - 2>&1 | FileCheck %s
2
! RUN: %flang_fc1 -emit-fir %s -o - 2>&1 | FileCheck %s
3
4
! CHECK: ignoring all compiler directives
5
6
MODULE
test_mod
7
CONTAINS
8
SUBROUTINE
foo
()
9
REAL
::
var
10
!DIR$ VECTOR ALIGNED
11
var
=
1
.
12
END SUBROUTINE
foo
13
END MODULE
test_mod