brintos

brintos / llvm-project-archived public Read only

0
0
Text · 248 B · 011bbb9 Raw
10 lines · plain
1! RUN: bbc -emit-fir %s -o - | FileCheck %s2 3! CHECK-LABEL: ieor_test4subroutine ieor_test(a, b)5  integer :: a, b6  print *, ieor(a, b)7  ! CHECK: %{{[0-9]+}} = arith.xori %{{[0-9]+}}, %{{[0-9]+}} : i{{(8|16|32|64|128)}}8end subroutine ieor_test9 10