Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-case.cpp118 using PairOfValues = std::pair<std::optional<Value>, std::optional<Value>>; typedef in Fortran::semantics::CaseValues
119 PairOfValues ComputeBounds(const parser::CaseValueRange &range) { in ComputeBounds()
124 return PairOfValues{value, value}; in ComputeBounds()
135 return PairOfValues{}; // error case in ComputeBounds()
137 return PairOfValues{std::move(lo), std::move(hi)}; in ComputeBounds()