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