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
[RISCV] Change func to funct in RISCVInstrInfoXqci.td. NFC (#119669)
[llvm-project.git]
/
flang
/
test
/
Lower
/
Intrinsics
/
conjg.f90
blob
a1c5a56d9de5a32847998e7c96d5f335e8d3f9dd
1
! RUN: bbc -emit-fir %s -o - | FileCheck %s
2
3
! CHECK-LABEL: conjg_test
4
subroutine
conjg_test
(
z1
,
z2
)
5
complex
::
z1
,
z2
6
! CHECK: fir.extract_value
7
! CHECK: negf
8
! CHECK: fir.insert_value
9
z2
=
conjg
(
z1
)
10
end subroutine