brintos

brintos / llvm-project-archived public Read only

0
0
Text · 389 B · 73eead3 Raw
11 lines · plain
1! RUN: bbc -emit-fir -hlfir=false %s -o - | FileCheck %s2 3! CHECK-LABEL: cpu_time_test4subroutine cpu_time_test(t)5    real :: t6    ! CHECK: %[[result64:[0-9]+]] = fir.call @_FortranACpuTime() {{.*}}: () -> f647    ! CHECK: %[[result32:[0-9]+]] = fir.convert %[[result64]] : (f64) -> f328    ! CHECK: fir.store %[[result32]] to %arg0 : !fir.ref<f32>9    call cpu_time(t)10  end subroutine11