2021-01-25 20:07:17 +08:00
|
|
|
! RUN: %flang -E %s 2>&1 | FileCheck %s
|
2020-08-04 01:50:42 +08:00
|
|
|
! CHECK: res=((666)+111)
|
2019-10-05 06:21:31 +08:00
|
|
|
* ditto, but with intervening *comment line
|
|
|
|
integer function IFLM(x)
|
|
|
|
integer :: x
|
|
|
|
IFLM = x
|
|
|
|
end function IFLM
|
|
|
|
program main
|
|
|
|
#define IFLM(x) ((x)+111)
|
|
|
|
integer :: res
|
|
|
|
res = IFL
|
|
|
|
*comment
|
|
|
|
+M(666)
|
|
|
|
if (res .eq. 777) then
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp010.F yes'
|
2019-10-05 06:21:31 +08:00
|
|
|
else
|
2020-08-04 01:50:42 +08:00
|
|
|
print *, 'pp010.F no: ', res
|
2019-10-05 06:21:31 +08:00
|
|
|
end if
|
|
|
|
end
|