repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
pp128.F90
blob
657827f73d819adcaf8f2dbf1be79282078df4a9
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: res = IFLM
3
! FLM call with '(' on next line (not a continuation)
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
12
(666)
13
if (res .eq. 777) then
14
print *, 'pp128.F90 yes'
15
else
16
print *, 'pp128.F90 no: ', res
17
end if
18
end