Renaming SwapByteOrder() to getSwappedBytes()
[oota-llvm.git] / include / llvm / ADT / SmallBitVector.h
index 86949b2ae3420087d454bea78bb5dfb84ab338c1..e965bc464326795c03c800e28e57ad14eb77b5ce 100644 (file)
@@ -153,11 +153,9 @@ public:
       switchToLarge(new BitVector(*RHS.getPointer()));
   }
 
-#if LLVM_HAS_RVALUE_REFERENCES
   SmallBitVector(SmallBitVector &&RHS) : X(RHS.X) {
     RHS.X = 1;
   }
-#endif
 
   ~SmallBitVector() {
     if (!isSmall())
@@ -506,7 +504,6 @@ public:
     return *this;
   }
 
-#if LLVM_HAS_RVALUE_REFERENCES
   const SmallBitVector &operator=(SmallBitVector &&RHS) {
     if (this != &RHS) {
       clear();
@@ -514,7 +511,6 @@ public:
     }
     return *this;
   }
-#endif
 
   void swap(SmallBitVector &RHS) {
     std::swap(X, RHS.X);