blob: 1aacde0f308fb08546a8f70479c6537430088a94 [file] [log] [blame]
!-----------
! 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