view flang/test/Driver/cpp-nocpp-command-line-macro.f90 @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents
children c4bab56944e8
line wrap: on
line source

!-----------
! RUN lines
!-----------
! RUN: %flang_fc1 -E %s 2>&1 | FileCheck %s --check-prefix=UNDEFINED
! RUN: %flang_fc1 -E -cpp -DX=A %s 2>&1 | FileCheck %s --check-prefix=DEFINED
! RUN: %flang_fc1 -E -nocpp -DX=A %s 2>&1 | FileCheck %s --check-prefix=UNDEFINED

!-----------------
! EXPECTED OUTPUT
!-----------------
! UNDEFINED:program b
! UNDEFINED-NOT:program a

! DEFINED:program a
! DEFINED-NOT:program b

#ifdef X
program X
#else
program B
#endif
end