mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-02 15:26:29 +00:00
Add inequality operator for MachineLocation.
Fixes the build I broke in r205360 llvm-svn: 205361
This commit is contained in:
parent
1275e4f026
commit
98caf8bc64
@ -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