Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Lower / Intrinsics / ior.f90
blob35f1997ba15aa2cd1afb772888ead48fc633b209
1 ! RUN: bbc -emit-fir %s -o - | FileCheck %s
2 ! RUN: %flang_fc1 -emit-fir %s -o - | FileCheck %s
4 ! CHECK-LABEL: ior_test
5 subroutine ior_test(a, b)
6 integer :: a, b
7 print *, ior(a, b)
8 ! CHECK: %{{[0-9]+}} = arith.ori %{{[0-9]+}}, %{{[0-9]+}} : i{{(8|16|32|64|128)}}
9 end subroutine ior_test