Revert r247684 - Replace Triple with a new TargetTuple ...
[oota-llvm.git] / include / llvm / MC / MachineLocation.h
index 9cf855bb8995b0b1b0db0fb3323f757494bfedd1..2a18615eff6253367ecbc74ccda6747c65970628 100644 (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