bolt/deps/llvm-18.1.8/flang/test/Lower/basic-program.f90
2025-02-14 19:21:04 +01:00

13 lines
333 B
Fortran

! RUN: bbc %s --pft-test | FileCheck %s
! RUN: bbc %s -o "-" -emit-fir | FileCheck %s --check-prefix=FIR
program basic
end program
! CHECK: 1 Program basic
! CHECK: 1 EndProgramStmt: end program
! CHECK: End Program basic
! FIR-LABEL: func @_QQmain() attributes {fir.bindc_name = "basic"} {
! FIR: return
! FIR: }