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
/
pp017.F
blob
d4fb0922efbc0459825d053dd9d38b3b5cbdad3c
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: if (777 .eq. 777) then
3
* KLM rescan
4
integer, parameter :: KWM = 666, KWM2 = 667
5
#define KWM2 777
6
#define KWM KWM2
7
if (KWM .eq. 777) then
8
print *, 'pp017.F yes'
9
else
10
print *, 'pp017.F no: ', KWM
11
end if
12
end