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
/
pp108.F90
blob
8e738142c079ecf0aa5af0be64ea41a06122c27f
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: res = KWM
3
! ditto, but without & ! comment
4
integer, parameter :: KWM = 666
5
#define KWM 777
6
integer :: res
7
res = KW&
8
M
9
if (res .eq. 777) then
10
print *, 'pp108.F90 yes'
11
else
12
print *, 'pp108.F90 no: ', res
13
end if
14
end