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
[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
disable-expansion.F90
blob
8a81f149c2093df463f804e185aeaacb40a9ceda
1
! RUN: %flang -E %s | FileCheck %s
2
#define KWM a
3
#define FLM(x) b FLM2(x) KWM c
4
#define FLM2(x) d FLM(x) e
5
! CHECK: a
6
KWM
7
! CHECK: b d FLM(y) e a c
8
FLM(y)
9
! CHECK: b d FLM(a) e a c
10
FLM(KWM)
11
! CHECK: b d FLM(b d FLM(y) e a c) e a c
12
FLM(FLM(y))
13
! CHECK: b d FLM(b d FLM(a) e a c) e a c
14
FLM(FLM(KWM))