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
Reland [OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
cond-contin.F90
blob
9221e34e013f40a65ed7b0368dfef867fc9b2418
1
! RUN: %flang_fc1 -E %s 2>&1 | FileCheck %s
2
! CHECK: subroutine test(ARG1, FA, FB, ARG2)
3
! CHECK: end
4
5
subroutine test( &
6
ARG1, &
7
! test
8
#ifndef SWAP
9
#define ARG1 FA
10
#define ARG2 FB
11
#else
12
#define ARG1 FB
13
#define ARG2 FA
14
#endif
15
ARG1, ARG2, &
16
! test
17
#undef ARG1
18
#undef ARG2
19
&ARG2)
20
! comment
21
end