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
[Transforms] Silence a warning in SROA.cpp (NFC)
[llvm-project.git]
/
flang
/
test
/
Lower
/
Intrinsics
/
ieor.f90
blob
011bbb9d5cd2b7fbcbd41e3e8b48ff215f5a5a77
1
! RUN: bbc -emit-fir %s -o - | FileCheck %s
2
3
! CHECK-LABEL: ieor_test
4
subroutine
ieor_test
(
a
,
b
)
5
integer
::
a
,
b
6
print
*,
ieor
(
a
,
b
)
7
! CHECK: %{{[0-9]+}} = arith.xori %{{[0-9]+}}, %{{[0-9]+}} : i{{(8|16|32|64|128)}}
8
end subroutine
ieor_test
9