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