mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-06 03:19:50 +00:00
Optimize SlotIndex equality tests.
IndexListEntries have unique indexes, so it is not necessary to dereference pointers to them. llvm-svn: 126923
This commit is contained in:
parent
92d724fb69
commit
2a12e5adba
@ -187,11 +187,11 @@ namespace llvm {
|
||||
|
||||
/// Compare two SlotIndex objects for equality.
|
||||
bool operator==(SlotIndex other) const {
|
||||
return getIndex() == other.getIndex();
|
||||
return lie == other.lie;
|
||||
}
|
||||
/// Compare two SlotIndex objects for inequality.
|
||||
bool operator!=(SlotIndex other) const {
|
||||
return getIndex() != other.getIndex();
|
||||
return lie != other.lie;
|
||||
}
|
||||
|
||||
/// Compare two SlotIndex objects. Return true if the first index
|
||||
|
Loading…
x
Reference in New Issue
Block a user