File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -281,8 +281,7 @@ static void DetermineCopyInOutArgument(
281281 if (actual.isAlternateReturn ()) {
282282 return ;
283283 }
284- const auto *dummyObj{
285- std::get_if<characteristics::DummyDataObject>(&dummy.u )};
284+ const auto *dummyObj{std::get_if<characteristics::DummyDataObject>(&dummy.u )};
286285 if (!dummyObj) {
287286 // Only DummyDataObject has the information we need
288287 return ;
@@ -310,15 +309,15 @@ static void DetermineCopyInOutArgument(
310309 characteristics::TypeAndShape::Attr::AssumedSize)};
311310 bool dummyNeedsContiguity{dummyIsArray &&
312311 (dummyIsExplicitShape || dummyIsAssumedSize ||
313- dummyObj->attrs .test (characteristics::DummyDataObject::Attr::Contiguous))};
312+ dummyObj->attrs .test (
313+ characteristics::DummyDataObject::Attr::Contiguous))};
314314 if (!actualTreatAsContiguous && dummyNeedsContiguity) {
315315 actual.SetMayNeedCopyIn ();
316316 if (!actualHasVectorSubscript) {
317317 actual.SetMayNeedCopyOut ();
318318 }
319319 }
320320
321-
322321 // TODO
323322}
324323
You can’t perform that action at this time.
0 commit comments