We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52aebd2 commit a9eabe8Copy full SHA for a9eabe8
flang/lib/Semantics/expression.cpp
@@ -2018,7 +2018,7 @@ void ExpressionAnalyzer::Analyze(const parser::CallStmt &callStmt) {
2018
CHECK(proc);
2019
if (CheckCall(call.source, *proc, callee->arguments)) {
2020
bool hasAlternateReturns{
2021
- analyzer.GetActuals().size() < actualArgList.size()};
+ callee->arguments.size() < actualArgList.size()};
2022
callStmt.typedCall.reset(new ProcedureRef{std::move(*proc),
2023
std::move(callee->arguments), hasAlternateReturns});
2024
}
0 commit comments