[C++11] Remove the R-value reference #if usage from the ADT and Support
[oota-llvm.git] / include / llvm / Support / ConstantRange.h
index f757c6ea60f0b51f8f59c5d46ea2ed1c89e3458b..5558c87ce8720bf7e313683443feb328aa6584f1 100644 (file)
@@ -42,13 +42,8 @@ namespace llvm {
 class ConstantRange {
   APInt Lower, Upper;
 
-#if LLVM_HAS_RVALUE_REFERENCES
   // If we have move semantics, pass APInts by value and move them into place.
   typedef APInt APIntMoveTy;
-#else
-  // Otherwise pass by const ref to save one copy.
-  typedef const APInt &APIntMoveTy;
-#endif
 
 public:
   /// Initialize a full (the default) or empty set for the specified bit width.