mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 23:29:51 +00:00
Revert "Make a comparator's argument `const'. This fixes the build for
MSVC 9." The "fix" was meaningless. This reverts commit r127245. llvm-svn: 127260
This commit is contained in:
parent
bdf8053571
commit
3faa2722ef
@ -36,7 +36,7 @@ struct CompEnd {
|
||||
bool operator()(SlotIndex A, const LiveRange &B) const {
|
||||
return A < B.end;
|
||||
}
|
||||
bool operator()(const LiveRange &A, const SlotIndex B) const {
|
||||
bool operator()(const LiveRange &A, SlotIndex B) const {
|
||||
return A.end < B;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user