brintos

brintos / llvm-project-archived public Read only

0
0
Text · 458 B · 66742a3 Raw
20 lines · plain
1! RUN: %flang -E %s 2>&1 | FileCheck %s2! CHECK: res = ((666)+111)3* FLM call split between name and (, with intervening *comment4      integer function IFLM(x)5        integer :: x6        IFLM = x7      end function IFLM8      program main9#define IFLM(x) ((x)+111)10      integer :: res11      res = IFLM12*comment13     +(666)14      if (res .eq. 777) then15        print *, 'pp014.F yes'16      else17        print *, 'pp014.F no: ', res18      end if19      end20