13 lines · plain
1! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s2 3program main4 use ISO_FORTRAN_ENV, only: compiler_options5 implicit none6 character (len = :), allocatable :: v7! CHECK: v="{{.*}}flang{{.*}} -fdebug-unparse {{.*}}"8 v = compiler_options()9 print *, v10 deallocate(v)11 close(1)12end program main13