[JITLink][arm64] Support arm64e JIT'd code (initially enabled for MachO only).
[llvm-project.git] / flang / test / Evaluate / compiler_options_fc1.f90
blobdcb0b7db3eb97dc7035b1f78a3c098683f62bba1
1 ! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
3 program main
4 use ISO_FORTRAN_ENV, only: compiler_options
5 implicit none
6 character (len = :), allocatable :: v
7 ! CHECK: v="{{.*}}flang{{.*}} -fdebug-unparse {{.*}}"
8 v = compiler_options()
9 print *, v
10 deallocate(v)
11 close(1)
12 end program main