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
/
implicit-contin4.F90
blob
893be974f6d5cec4a855b53754bb1436ebe7fc78
1
! RUN: %flang -E %s | FileCheck %s
2
! Macro definitions with unbalanced parentheses should not affect
3
! implicit continuations.
4
subroutine foo(a, d)
5
implicit none
6
integer :: a
7
integer :: d
8
9
#define sub(x, y) foo2(x, y)
10
#define bar )
11
12
call sub(1,
13
2)
14
end subroutine foo
15
16
!CHECK: call foo2(1, 2)
17
!CHECK: end subroutine foo