[flang-commits] [flang] [flang] Don't insert spaces in -E output after line continuation (PR #135063)

Eugene Epshteyn via flang-commits flang-commits at lists.llvm.org
Wed Apr 9 12:24:26 PDT 2025


================
@@ -155,7 +155,7 @@ void Parsing::EmitPreprocessedSource(
       const auto getOriginalChar{[&](char ch) {
         if (IsLetter(ch) && provenance && provenance->size() == 1) {
           if (const char *orig{allSources.GetSource(*provenance)}) {
-            const char upper{ToUpperCaseLetter(ch)};
+            char upper{ToUpperCaseLetter(ch)};
----------------
eugeneepshteyn wrote:

Why not `const char upper...` ?

https://github.com/llvm/llvm-project/pull/135063


More information about the flang-commits mailing list