forked from OSchip/llvm-project
[MLIR][NFC] Add SymbolUse::UseRange::empty()
Differential Revision: https://reviews.llvm.org/D84984
This commit is contained in:
parent
e56e9022bc
commit
a34a8d5260
|
@ -150,6 +150,7 @@ public:
|
|||
using iterator = std::vector<SymbolUse>::const_iterator;
|
||||
iterator begin() const { return uses.begin(); }
|
||||
iterator end() const { return uses.end(); }
|
||||
bool empty() const { return uses.empty(); }
|
||||
|
||||
private:
|
||||
std::vector<SymbolUse> uses;
|
||||
|
|
Loading…
Reference in New Issue