brintos

brintos / llvm-project-archived public Read only

0
0
Text · 324 B · 070b973 Raw
13 lines · plain
1! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s2 3program main4    use ISO_FORTRAN_ENV, only: compiler_version5    implicit none6    character (len = :), allocatable :: v7! CHECK: v="{{.*}}flang version {{[0-9]+\.[0-9.]+.*}}"8    v = compiler_version()9    print *, v10    deallocate(v)11    close(1)12end program main13