[flang] Move TODO to the source allocation part
authorValentin Clement <clementval@gmail.com>
Wed, 18 Jan 2023 15:31:19 +0000 (16:31 +0100)
committerValentin Clement <clementval@gmail.com>
Wed, 18 Jan 2023 15:31:19 +0000 (16:31 +0100)
flang/lib/Lower/Allocatable.cpp

index a4e3850..b774c96 100644 (file)
@@ -438,8 +438,6 @@ private:
     // Generate a sequence of runtime calls.
     errorManager.genStatCheck(builder, loc);
     genAllocateObjectInit(box);
-    if (alloc.getShapeSpecs().size() > 0 && sourceExv.rank() == 0)
-      TODO(loc, "allocate array object with scalar SOURCE specifier");
     if (alloc.hasCoarraySpec())
       TODO(loc, "coarray allocation");
     if (alloc.type.IsPolymorphic())
@@ -560,6 +558,8 @@ private:
     genAllocateObjectInit(box);
     if (alloc.hasCoarraySpec())
       TODO(loc, "coarray allocation");
+    if (alloc.getShapeSpecs().size() > 0 && sourceExv.rank() == 0)
+      TODO(loc, "allocate array object with scalar SOURCE specifier");
     // Set length of the allocate object if it has. Otherwise, get the length
     // from source for the deferred length parameter.
     if (lenParams.empty() && box.isCharacter() &&