LiveIntervals: Add missing operator!= for segments

llvm-svn: 372449
This commit is contained in:
Matt Arsenault 2019-09-21 02:37:28 +00:00
parent 6541c7988b
commit bd7f2354cc
1 changed files with 4 additions and 0 deletions

View File

@ -189,6 +189,10 @@ namespace llvm {
return start == Other.start && end == Other.end;
}
bool operator!=(const Segment &Other) const {
return !(*this == Other);
}
void dump() const;
};