xref: /llvm-project/flang/test/Preprocessing/pp103.F90 (revision 1c8f199f449916d30ec12ecc5bb0f157ab1d01a0)
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 *, 'pp103.F90 yes'
14      else
15        print *, 'pp103.F90 no: ', res
16      end if
17      end
18