forked from OSchip/llvm-project
[flang][NFC] Add todo in CallInterface
Add a todo for assumed shape dummy argument with VALUE attribute since this is not implemented yet. This patch is part of the upstreaming effort from fir-dev branch. Reviewed By: jeanPerier Differential Revision: https://reviews.llvm.org/D121581
This commit is contained in:
parent
a5f1262332
commit
f5b29a7a96
|
@ -836,6 +836,8 @@ private:
|
|||
addPassedArg(PassEntityBy::MutableBox, entity, characteristics);
|
||||
} else if (dummyRequiresBox(obj)) {
|
||||
// Pass as fir.box
|
||||
if (isValueAttr)
|
||||
TODO(loc, "assumed shape dummy argument with VALUE attribute");
|
||||
addFirOperand(boxType, nextPassedArgPosition(), Property::Box, attrs);
|
||||
addPassedArg(PassEntityBy::Box, entity, characteristics);
|
||||
} else if (dynamicType.category() ==
|
||||
|
|
Loading…
Reference in New Issue