[flang-commits] [PATCH] D114756: [flang] Address TODO from previous changes to IsSaved()
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Mon Nov 29 15:41:22 PST 2021
klausler created this revision.
klausler added a reviewer: jeanPerier.
klausler added a project: Flang.
Herald added a subscriber: jdoerfert.
klausler requested review of this revision.
An earlier fix to evaluate::IsSaved() needed to preserve its
treatment of named constants in modules and main programs -- i.e.
they would appear to be saved -- until a correction was added
to the lowering code. This TODO can now be resolved.
https://reviews.llvm.org/D114756
Files:
flang/lib/Evaluate/tools.cpp
Index: flang/lib/Evaluate/tools.cpp
===================================================================
--- flang/lib/Evaluate/tools.cpp
+++ flang/lib/Evaluate/tools.cpp
@@ -1207,10 +1207,8 @@
return false; // this is a component
} else if (symbol.attrs().test(Attr::SAVE)) {
return true; // explicit SAVE attribute
- } else if (symbol.test(Symbol::Flag::InDataStmt)) {
- return true;
} else if (IsDummy(symbol) || IsFunctionResult(symbol) ||
- IsAutomatic(symbol)) {
+ IsAutomatic(symbol) || IsNamedConstant(symbol)) {
return false;
} else if (scopeKind == Scope::Kind::Module ||
(scopeKind == Scope::Kind::MainProgram &&
@@ -1228,13 +1226,8 @@
// -fno-automatic/-save/-Msave option applies to objects in
// executable subprograms unless they are explicitly RECURSIVE.
return true;
- } else if (IsNamedConstant(symbol)) {
- // TODO: lowering needs named constants in modules to be static,
- // so this test for a named constant has lower precedence for the
- // time being; when lowering is corrected, this case should be
- // moved up above module logic, since named constants don't really
- // have implied SAVE attributes.
- return false;
+ } else if (symbol.test(Symbol::Flag::InDataStmt)) {
+ return true;
} else if (const auto *object{symbol.detailsIf<ObjectEntityDetails>()};
object && object->init()) {
return true;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D114756.390508.patch
Type: text/x-patch
Size: 1430 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20211129/64d6cf54/attachment-0001.bin>
More information about the flang-commits
mailing list