[flang-commits] [flang] [flang] Add ETIME runtime and lowering intrinsics implementation (PR #90578)
Michael Klemm via flang-commits
flang-commits at lists.llvm.org
Tue Apr 30 04:25:03 PDT 2024
================
@@ -1939,7 +1945,7 @@ std::optional<SpecificCall> IntrinsicInterface::Match(
int elementalRank{0};
for (std::size_t j{0}; j < dummies; ++j) {
const IntrinsicDummyArgument &d{dummy[std::min(j, dummyArgPatterns - 1)]};
- if (const ActualArgument *arg{actualForDummy[j]}) {
+ if (const ActualArgument * arg{actualForDummy[j]}) {
----------------
mjklemm wrote:
These seem to be unrelated formatting changes. Would you mind taking them back to keep the PR focused on the new feature? (Same for the other formatting-only changes.)
https://github.com/llvm/llvm-project/pull/90578
More information about the flang-commits
mailing list