Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-names-utils.cpp245 Bound GetBound(const std::optional<parser::SpecificationExpr> &);
246 Bound GetBound(const parser::SpecificationExpr &);
308 arraySpec_.push_back(ShapeSpec::MakeAssumedShape(GetBound(x.v))); in Analyze()
327 arraySpec_.push_back(ShapeSpec::MakeExplicit(GetBound(lb), GetBound(ub))); in MakeExplicit()
331 arraySpec_.push_back(ShapeSpec::MakeImplied(GetBound(lb))); in MakeImplied()
339 Bound ArraySpecAnalyzer::GetBound( in GetBound() function in Fortran::semantics::ArraySpecAnalyzer
341 return x ? GetBound(*x) : Bound{1}; in GetBound()
343 Bound ArraySpecAnalyzer::GetBound(const parser::SpecificationExpr &x) { in GetBound() function in Fortran::semantics::ArraySpecAnalyzer