Add inequality operator for MachineLocation.

Fixes the build I broke in r205360

llvm-svn: 205361
This commit is contained in:
David Blaikie 2014-04-01 21:54:52 +00:00
parent 1275e4f026
commit 98caf8bc64

View File

@ -73,6 +73,11 @@ public:
void dump();
#endif
};
inline bool operator!=(const MachineLocation &LHS, const MachineLocation &RHS) {
return !(LHS == RHS);
}
} // End llvm namespace
#endif