Peter Klausler dd3214d5a6
[flang] Fix handling of identifier in column 1 of free form continuat… (#146430)
…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 .
2025-07-03 14:32:38 -07:00

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