[flang-commits] [PATCH] D134504: [flang] Fix crash in semantics in error recovery
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Thu Sep 22 17:19:50 PDT 2022
klausler created this revision.
klausler added a reviewer: jeanPerier.
klausler added a project: Flang.
Herald added a subscriber: jdoerfert.
Herald added a project: All.
klausler requested review of this revision.
When a FUNCTION statement has both an explicit type in its prefix
and a RESULT clause in its suffix, semantics crashes due to the
redundant type; emit a nice error message instead.
Fixes https://github.com/llvm/llvm-project/issues/57586.
https://reviews.llvm.org/D134504
Files:
flang/lib/Semantics/resolve-names.cpp
Index: flang/lib/Semantics/resolve-names.cpp
===================================================================
--- flang/lib/Semantics/resolve-names.cpp
+++ flang/lib/Semantics/resolve-names.cpp
@@ -2053,12 +2053,19 @@
// If the function has a type in the prefix, process it now.
FuncInfo *info{Top()};
if (info && &info->scope == &scopeHandler_.currScope()) {
- if (info->parsedType) {
+ if (info->parsedType && info->resultSymbol) {
scopeHandler_.messageHandler().set_currStmtSource(info->source);
if (const auto *type{
scopeHandler_.ProcessTypeSpec(*info->parsedType, true)}) {
- if (!scopeHandler_.context().HasError(info->resultSymbol)) {
- info->resultSymbol->SetType(*type);
+ Symbol &symbol{*info->resultSymbol};
+ if (!scopeHandler_.context().HasError(symbol)) {
+ if (symbol.GetType()) {
+ scopeHandler_.Say(symbol.name(),
+ "Function cannot have both an explicit type prefix and a RESULT suffix"_err_en_US);
+ scopeHandler_.context().SetError(symbol);
+ } else {
+ symbol.SetType(*type);
+ }
}
}
info->parsedType = nullptr;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D134504.462358.patch
Type: text/x-patch
Size: 1209 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20220923/f8ee0e37/attachment.bin>
More information about the flang-commits
mailing list