brintos

brintos / llvm-project-archived public Read only

0
0
Text · 467 B · bbf8709 Raw
19 lines · plain
1! RUN: %flang -E %s 2>&1 | FileCheck %s2! CHECK: res = IFLM(666)3! FLM call name split across continuation, no leading &, with & ! comment4      integer function IFLM(x)5        integer :: x6        IFLM = x7      end function IFLM8      program main9#define IFLM(x) ((x)+111)10      integer :: res11      res = IFL& ! comment12M(666)13      if (res .eq. 777) then14        print *, 'pp111.F90 yes'15      else16        print *, 'pp111.F90 no: ', res17      end if18      end19