[flang-commits] [flang] [Flang] Handle self-referencing KIND selectors (PR #216668)

Eugene Epshteyn via flang-commits flang-commits at lists.llvm.org
Wed Aug 19 14:53:05 PDT 2026


================
@@ -10580,6 +10580,26 @@ void ResolveNamesVisitor::PreSpecificationConstruct(
       spec.u);
 }
 
+static bool IsCallOfDeclaredEntity(
+    const parser::Call &call, const std::list<parser::EntityDecl> &entities) {
+  // Pure query: do not resolve names or modify symbols/scopes.
+  const auto &procDesignator{std::get<parser::ProcedureDesignator>(call.t)};
+
----------------
eugeneepshteyn wrote:

While it's ok to leave empty lines while you are coding, the general coding style of the surrounding code is to avoid empty lines. Please remove the extra empty lines between the code blocks.

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


More information about the flang-commits mailing list