brintos

brintos / llvm-project-archived public Read only

0
0
Text · 667 B · f672841 Raw
22 lines · plain
1! RUN: %flang -E %s 2>&1 | FileCheck %s2! CHECK: res = ((666)+111)3* FLM call split between name and (, clipped4      integer function IFLM(x)5        integer :: x6        IFLM = x7      end function IFLM8      program main9#define IFLM(x) ((x)+111)10      integer :: res11* 'comment' is in column 7312*        1         2         3         4         5         6         713*23456789012345678901234567890123456789012345678901234567890123456789012314      res = IFLM                                                        comment15     +(666)16      if (res .eq. 777) then17        print *, 'pp015.F yes'18      else19        print *, 'pp015.F no: ', res20      end if21      end22