Home
last modified time | relevance | path

Searched refs:objectDeclAttr_ (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-names.cpp884 objectDeclAttr_ = Attr::ALLOCATABLE; in Pre()
887 void Post(const parser::AllocatableStmt &) { objectDeclAttr_ = std::nullopt; } in Post()
889 objectDeclAttr_ = Attr::TARGET; in Pre()
892 void Post(const parser::TargetStmt &) { objectDeclAttr_ = std::nullopt; } in Post()
1017 std::optional<Attr> objectDeclAttr_; member in Fortran::semantics::DeclarationVisitor
4184 CHECK(objectDeclAttr_); in Post()
4186 DeclareObjectEntity(name, Attrs{*objectDeclAttr_}); in Post()