[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:38 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:
Thanks Eugene! I did run clang-format, and you're right it looks like a space between * and arg got introduced here. I likely did that unintentionally. It's interesting that Clang-format did not enforce this spacing style. I will fix that.
https://github.com/llvm/llvm-project/pull/151878
More information about the flang-commits
mailing list