2020-02-26 10:01:23 +08:00
|
|
|
//===-- lib/Semantics/check-namelist.cpp ----------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "check-namelist.h"
|
|
|
|
|
|
|
|
namespace Fortran::semantics {
|
|
|
|
|
|
|
|
void NamelistChecker::Leave(const parser::NamelistStmt &nmlStmt) {
|
|
|
|
for (const auto &x : nmlStmt.v) {
|
|
|
|
if (const auto *nml{std::get<parser::Name>(x.t).symbol}) {
|
|
|
|
for (const auto &nmlObjName : std::get<std::list<parser::Name>>(x.t)) {
|
|
|
|
const auto *nmlObjSymbol{nmlObjName.symbol};
|
|
|
|
if (nmlObjSymbol && nmlObjSymbol->has<ObjectEntityDetails>()) {
|
|
|
|
const auto *symDetails{
|
|
|
|
std::get_if<ObjectEntityDetails>(&nmlObjSymbol->details())};
|
2020-03-29 12:00:16 +08:00
|
|
|
if (symDetails && symDetails->IsAssumedSize()) { // C8104
|
2020-02-26 10:01:23 +08:00
|
|
|
context_.Say(nmlObjName.source,
|
|
|
|
"A namelist group object '%s' must not be"
|
|
|
|
" assumed-size"_err_en_US,
|
|
|
|
nmlObjSymbol->name());
|
|
|
|
}
|
|
|
|
if (nml->attrs().test(Attr::PUBLIC) &&
|
2020-03-29 12:00:16 +08:00
|
|
|
nmlObjSymbol->attrs().test(Attr::PRIVATE)) { // C8105
|
2020-02-26 10:01:23 +08:00
|
|
|
context_.Say(nmlObjName.source,
|
|
|
|
"A PRIVATE namelist group object '%s' must not be in a "
|
|
|
|
"PUBLIC namelist"_err_en_US,
|
|
|
|
nmlObjSymbol->name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::semantics
|