[flang-commits] [PATCH] D153792: [flang] Avoid crash in error recovery
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Tue Jun 27 09:54:51 PDT 2023
klausler updated this revision to Diff 535033.
klausler added a comment.
Update with the right patch.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153792/new/
https://reviews.llvm.org/D153792
Files:
flang/lib/Semantics/expression.cpp
flang/test/Semantics/resolve52.f90
Index: flang/test/Semantics/resolve52.f90
===================================================================
--- flang/test/Semantics/resolve52.f90
+++ flang/test/Semantics/resolve52.f90
@@ -50,6 +50,11 @@
subroutine s(x)
class(t) :: x
end
+ subroutine test
+ type(t) x
+ !ERROR: Dummy argument 'x=' (#1) is not OPTIONAL and is not associated with an actual argument in this procedure reference
+ call x%p
+ end
end
module m4
Index: flang/lib/Semantics/expression.cpp
===================================================================
--- flang/lib/Semantics/expression.cpp
+++ flang/lib/Semantics/expression.cpp
@@ -2116,7 +2116,7 @@
proc.details());
}
-static int GetPassIndex(const Symbol &proc) {
+static std::optional<int> GetPassIndex(const Symbol &proc) {
CHECK(!proc.attrs().test(semantics::Attr::NOPASS));
std::optional<parser::CharBlock> passName{GetPassName(proc)};
const auto *interface {
@@ -2133,7 +2133,7 @@
}
++index;
}
- DIE("PASS argument name not in dummy argument list");
+ return std::nullopt;
}
// Injects an expression into an actual argument list as the "passed object"
@@ -2146,10 +2146,13 @@
if (component.attrs().test(semantics::Attr::NOPASS)) {
return;
}
- int passIndex{GetPassIndex(component)};
+ std::optional<int> passIndex{GetPassIndex(component)};
+ if (!passIndex) {
+ return; // error recovery
+ }
auto iter{actuals.begin()};
int at{0};
- while (iter < actuals.end() && at < passIndex) {
+ while (iter < actuals.end() && at < *passIndex) {
if (*iter && (*iter)->keyword()) {
iter = actuals.end();
break;
@@ -4296,7 +4299,7 @@
if (generic) {
ExpressionAnalyzer::AdjustActuals adjustment{
[&](const Symbol &proc, ActualArguments &) {
- return passIndex == GetPassIndex(proc);
+ return passIndex == GetPassIndex(proc).value_or(-1);
}};
auto pair{
context_.ResolveGeneric(*generic, actuals_, adjustment, isSubroutine)};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153792.535033.patch
Type: text/x-patch
Size: 2021 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20230627/b3aeb670/attachment-0001.bin>
More information about the flang-commits
mailing list