Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dpointer-assignment.cpp80 std::optional<TypeAndShape> lhsType_; member in Fortran::semantics::PointerAssignmentChecker
89 lhsType_ = std::move(lhsType); in set_lhsType()
172 } else if (lhsType_) { in Check()
175 if (!lhsType_->IsCompatibleWith(context_.messages(), *frTypeAndShape, in Check()
208 if (!lhsType_) { in Check()
227 if (!lhsType_->type().IsTkCompatibleWith(rhsType->type())) { in Check()
230 rhsType->type().AsFortran(), lhsType_->type().AsFortran()}; in Check()
233 int lhsRank{evaluate::GetRank(lhsType_->shape())}; in Check()
295 const auto &type{lhsType_->type()}; in LhsOkForUnlimitedPoly()