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
/
pp027.F
blob
1d736c962dc088641601225c16d9a68b6e7769ec
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: KWM = 666
3
! CHECK: if (777 .eq. 777) then
4
* #DEFINE works in fixed form
5
integer, parameter :: KWM = 666
6
#DEFINE KWM 777
7
if (KWM .eq. 777) then
8
print *, 'pp027.F yes'
9
else
10
print *, 'pp027.F no: ', KWM
11
end if
12
end