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
[flang][openacc] Use OpenACC terminator instead of fir.unreachable after Stop stmt...
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
pp025.F
blob
99f92afbf88c1282efbea30f37bb5ce39ccc83fb
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: res = I KWM2 Z
3
* KWM expansion is before token pasting due to fixed-form space removal
4
integer, parameter :: IKWM2Z = 777
5
#define KWM KWM2
6
integer :: res
7
res = I KWM Z
8
if (res .eq. 777) then
9
print *, 'pp025.F yes'
10
else
11
print *, 'pp025.F no: ', res
12
end if
13
end