brintos

brintos / llvm-project-archived public Read only

0
0
Text · 408 B · 63945c1 Raw
20 lines · plain
1!-----------2! RUN lines3!-----------4! RUN: %flang_fc1 -E %s 2>&1 | FileCheck %s --check-prefix=UNDEFINED5! RUN: %flang_fc1 -E -cpp -DX=A %s 2>&1 | FileCheck %s --check-prefix=DEFINED6! RUN: %flang_fc1 -E -nocpp -DX=A %s 2>&1 | FileCheck %s --check-prefix=UNDEFINED7 8! UNDEFINED:program B9! UNDEFINED-NOT:program A10 11! DEFINED:program A12! DEFINED-NOT:program B13 14#ifdef X15program X16#else17program B18#endif19end20