[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 10:52:39 PDT 2024


================
@@ -1340,6 +1340,12 @@ static const IntrinsicInterface intrinsicSubroutine[]{
             {"values", AnyInt, Rank::vector, Optionality::optional,
                 common::Intent::Out}},
         {}, Rank::elemental, IntrinsicClass::impureSubroutine},
+    {"etime",
+        {{"values", TypePattern{RealType, KindCode::exactKind, 4}, Rank::vector,
+             Optionality::required, common::Intent::Out},
+            {"time", TypePattern{RealType, KindCode::exactKind, 4},
+                Rank::scalar, Optionality::required, common::Intent::Out}},
+        {}, Rank::elemental, IntrinsicClass::impureSubroutine},
----------------
mjklemm wrote:

Nope. I wouldn't do that.  I was suggesting that we accept this part as it is and someone (me or someelse) should create a PR to fix all of them in one go.

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


More information about the flang-commits mailing list