[flang-commits] [PATCH] D123927: [flang] Do not ICE on recursive function definition in function result
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Mon Apr 18 09:11:40 PDT 2022
klausler added inline comments.
================
Comment at: flang/include/flang/Semantics/symbol.h:698
+ inline const DeclTypeSpec *GetTypeImpl(VisitedSymbols &visited) const;
+ inline int RankImpl(VisitedSymbols &visited) const {
+ if (visited.contains(this)) {
----------------
Your changes make Symbol::Rank() and Symbol::GetType() more expensive to call and liable to allocate/deallocate memory for all programs. Would it be sufficient to just use an integer argument to limit the call depth? That would avoid a crash in erroneous tests without affecting compilation for correct programs.
================
Comment at: flang/lib/Semantics/check-declarations.cpp:1789
if (!details) {
+ if (generic.test(Symbol::Flag::Function)) {
+ Characterize(generic);
----------------
When `generic` is not `GenericDetails`, what is it?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123927/new/
https://reviews.llvm.org/D123927
More information about the flang-commits
mailing list