brintos

brintos / llvm-project-archived public Read only

0
0
Text · 361 B · 8ac32ad Raw
14 lines · plain
1! RUN: %flang -E %s 2>&1 | FileCheck %s2! CHECK: if (KWM2 .eq. 777) then3! KWM rescan with #undef, proving rescan after expansion4      integer, parameter :: KWM2 = 777, KWM = 6675#define KWM2 6666#define KWM KWM27#undef KWM28      if (KWM .eq. 777) then9        print *, 'pp118.F90 yes'10      else11        print *, 'pp118.F90 no: ', KWM12      end if13      end14