diff --git a/flang/lib/parser/preprocessor.cc b/flang/lib/parser/preprocessor.cc index 913e0dac1f6c..07b23e8e5abe 100644 --- a/flang/lib/parser/preprocessor.cc +++ b/flang/lib/parser/preprocessor.cc @@ -153,7 +153,7 @@ TokenSequence Definition::Apply( } else if (pasting && token.IsBlank()) { // Delete whitespace immediately following ## in the body. } else if (bytes == 11 && isVariadic_ && - token.ToString() == "__VA_ARGs__") { + token.ToString() == "__VA_ARGS__") { Provenance commaProvenance{allSources.CompilerInsertionProvenance(',')}; for (std::size_t k{argumentCount_}; k < args.size(); ++k) { if (k > argumentCount_) {