forked from OSchip/llvm-project
[flang] Final tweak before review
Original-commit: flang-compiler/f18@5dda7b2f65 Reviewed-on: https://github.com/flang-compiler/f18/pull/339 Tree-same-pre-rewrite: false
This commit is contained in:
parent
f8c80f90ee
commit
cf8f173512
|
@ -398,7 +398,7 @@ bool Prescanner::NextToken(TokenSequence &tokens) {
|
|||
if (*at_ == '\n') {
|
||||
// Discard white space at the end of a line.
|
||||
} else if (!inPreprocessorDirective_ &&
|
||||
(previous == '(' || *at_ == ')')) {
|
||||
(previous == '(' || *at_ == '(' || *at_ == ')')) {
|
||||
// Discard white space before/after parentheses, unless in a
|
||||
// preprocessor directive. This helps yield space-free contiguous
|
||||
// names for generic interfaces like OPERATOR( + ) and
|
||||
|
|
Loading…
Reference in New Issue