forked from OSchip/llvm-project
20 lines
461 B
Fortran
20 lines
461 B
Fortran
! RUN: %flang -E %s 2>&1 | FileCheck %s
|
|
! CHECK: res = ((111)+666)
|
|
* FLM expansion of argument
|
|
integer function IFLM(x)
|
|
integer :: x
|
|
IFLM = x
|
|
end function IFLM
|
|
program main
|
|
integer, parameter :: KWM = 999
|
|
#define KWM 111
|
|
#define IFLM(x) ((x)+666)
|
|
integer :: res
|
|
res = IFLM(KWM)
|
|
if (res .eq. 777) then
|
|
print *, 'pp020.F yes'
|
|
else
|
|
print *, 'pp020.F no: ', res
|
|
end if
|
|
end
|