…ion line
An obsolete flag ("insertASpace_") is being used to signal some cases in
the prescanner's implementation of continuation lines when a token
should be broken when it straddles a line break. It turns out that it's
sufficient to simply note these cases without ever actually inserting a
space, so don't do that (fixing the motivating bug). This leaves some
variables with obsolete names, so change them as well.
This patch handles the third of the three bugs reported in
https://github.com/llvm/llvm-project/issues/146362 .
8 lines
121 B
Fortran
8 lines
121 B
Fortran
!RUN: %flang -E %s 2>&1 | FileCheck %s
|
|
!CHECK: print *,((1)+(2)),4
|
|
#define foo(x,y) ((x)+(y))
|
|
print *,&
|
|
foo(1,2)&
|
|
,4
|
|
end
|