MachineBasicBlock: Use MCPhysReg instead of unsigned in livein API
[oota-llvm.git] / include / llvm / ADT / APSInt.h
index 0e088363c5be8b7d9d81c579b322de86e54d7062..a6552d0a2f367364cde45ab5c3d2e8737fdfde40 100644 (file)
@@ -247,7 +247,7 @@ public:
     return this->operator|(RHS);
   }
 
-  APSInt operator^(const APSIntRHS) const {
+  APSInt operator^(const APSInt &RHS) const {
     assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
     return APSInt(static_cast<const APInt&>(*this) ^ RHS, IsUnsigned);
   }