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
/
Intrinsics
/
dble.f90
blob
3a896443f5c12faa0aee03914ea52df6675c6c8d
1
! RUN: bbc -emit-fir %s -o - | FileCheck %s
2
3
! CHECK-LABEL: dble_test
4
subroutine
dble_test
(
a
)
5
real
::
a
6
! CHECK: fir.convert {{.*}} : (f32) -> f64
7
print
*,
dble
(
a
)
8
end subroutine