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] Accept polymorphic component element in storage_size
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
pp125.F90
blob
8f9c8f87365de764d22aba3579dde35317b76c1e
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: if (777 .eq. 777) then
3
! #DEFINE works in free form
4
integer, parameter :: KWM = 666
5
#DEFINE KWM 777
6
if (KWM .eq. 777) then
7
print *, 'pp125.F90 yes'
8
else
9
print *, 'pp125.F90 no: ', KWM
10
end if
11
end