[Transforms] Silence a warning in SROA.cpp (NFC)
[llvm-project.git] / flang / test / Lower / Intrinsics / ieor.f90
blob011bbb9d5cd2b7fbcbd41e3e8b48ff215f5a5a77
1 ! RUN: bbc -emit-fir %s -o - | FileCheck %s
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