forked from OSchip/llvm-project
LiveIntervals: Add missing operator!= for segments
llvm-svn: 372449
This commit is contained in:
parent
6541c7988b
commit
bd7f2354cc
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue