[flang-commits] [PATCH] D132162: [flang] Avoid spurious error message in function result compatibility
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Thu Aug 18 15:04:29 PDT 2022
This revision was automatically updated to reflect the committed changes.
klausler marked an inline comment as done.
Closed by commit rGc1a77839cc99: [flang] Avoid spurious error message in function result compatibility (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132162/new/
https://reviews.llvm.org/D132162
Files:
flang/lib/Evaluate/characteristics.cpp
Index: flang/lib/Evaluate/characteristics.cpp
===================================================================
--- flang/lib/Evaluate/characteristics.cpp
+++ flang/lib/Evaluate/characteristics.cpp
@@ -875,6 +875,23 @@
}
}
+static bool AreCompatibleFunctionResultShapes(const Shape &x, const Shape &y) {
+ int rank{GetRank(x)};
+ if (GetRank(y) != rank) {
+ return false;
+ }
+ for (int j{0}; j < rank; ++j) {
+ if (auto xDim{ToInt64(x[j])}) {
+ if (auto yDim{ToInt64(y[j])}) {
+ if (*xDim != *yDim) {
+ return false;
+ }
+ }
+ }
+ }
+ return true;
+}
+
bool FunctionResult::IsCompatibleWith(
const FunctionResult &actual, std::string *whyNot) const {
Attrs actualAttrs{actual.attrs};
@@ -892,9 +909,10 @@
*whyNot = "function results have distinct ranks";
}
} else if (!attrs.test(Attr::Allocatable) && !attrs.test(Attr::Pointer) &&
- ifaceTypeShape->shape() != actualTypeShape->shape()) {
+ !AreCompatibleFunctionResultShapes(
+ ifaceTypeShape->shape(), actualTypeShape->shape())) {
if (whyNot) {
- *whyNot = "function results have distinct extents";
+ *whyNot = "function results have distinct constant extents";
}
} else if (!ifaceTypeShape->type().IsTkCompatibleWith(
actualTypeShape->type())) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132162.453807.patch
Type: text/x-patch
Size: 1388 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20220818/e3284b75/attachment-0001.bin>
More information about the flang-commits
mailing list