mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-07 11:59:09 +00:00
Add inequality operator for MachineLocation.
Fixes the build I broke in r205360 llvm-svn: 205361
This commit is contained in:
parent
8ffd5df5fe
commit
02d09c84c9
@ -73,6 +73,11 @@ public:
|
||||
void dump();
|
||||
#endif
|
||||
};
|
||||
|
||||
inline bool operator!=(const MachineLocation &LHS, const MachineLocation &RHS) {
|
||||
return !(LHS == RHS);
|
||||
}
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user