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
/
pp008.F
blob
08d809da3e51417e5d9e13f8c5f7f24316b926b3
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: res = K W M
3
* KWM with spaces in name at invocation NOT replaced
4
integer, parameter :: KWM = 777
5
#define KWM 666
6
integer :: res
7
res = K W M
8
if (res .eq. 777) then
9
print *, 'pp008.F yes'
10
else
11
print *, 'pp008.F no: ', res
12
end if
13
end