[flang-commits] [flang] [flang] Register and lower SECNDS (stubbed implementation) (PR #151878)

Šárka Holendová via flang-commits flang-commits at lists.llvm.org
Sun Aug 10 08:00:39 PDT 2025


================
@@ -2687,7 +2691,7 @@ std::optional<SpecificCall> IntrinsicInterface::Match(
   // Rearrange the actual arguments into dummy argument order.
   ActualArguments rearranged(dummies);
   for (std::size_t j{0}; j < dummies; ++j) {
-    if (ActualArgument *arg{actualForDummy[j]}) {
+    if (ActualArgument * arg{actualForDummy[j]}) {
----------------
mlir-maiden wrote:

Eugene, I tracked this down. On my setup, a full clang-format pass reintroduces two issues in this file: (1) it inserts a space between * and the variable name (one occurrence, as in the screenshot above), and (2) it re-indents ++specIter in roughly three places. To avoid that churn, I pushed a small follow-up commit that hand-fixes just these spots - pointer spacing (no space after *) and the ++specIter indentation. I didn’t run clang-format over the whole file so these lines stay as intended.

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


More information about the flang-commits mailing list