[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:
peter klausler 2019-03-18 13:05:21 -07:00
parent f8c80f90ee
commit cf8f173512
1 changed files with 1 additions and 1 deletions

View File

@ -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