11 lines · plain
1! RUN: bbc -emit-fir %s -o - | FileCheck %s2! RUN: %flang_fc1 -emit-fir %s -o - | FileCheck %s3 4! CHECK-LABEL: ior_test5subroutine ior_test(a, b)6 integer :: a, b7 print *, ior(a, b)8 ! CHECK: %{{[0-9]+}} = arith.ori %{{[0-9]+}}, %{{[0-9]+}} : i{{(8|16|32|64|128)}}9end subroutine ior_test10 11