xref: /llvm-project/flang/test/Preprocessing/pp003.F (revision 3338ef93b02837edf69abc203e15a42fa55aa1b3)
1! RUN: %flang -E %s 2>&1 | FileCheck %s
2! CHECK: res = ((666)+111)
3* function-like macros
4      integer function IFLM(x)
5        integer :: x
6        IFLM = x
7      end function IFLM
8      program main
9#define IFLM(x) ((x)+111)
10      integer :: res
11      res = IFLM(666)
12      if (res .eq. 777) then
13        print *, 'pp003.F yes'
14      else
15        print *, 'pp003.F no: ', res
16      end if
17      end
18