In isUIntN, make sure N is less than 64 before using in a shift to avoid undefined...
[oota-llvm.git] / include / llvm / Support / SMLoc.h
index 45ec92d2d0da87c9b59d22b1e5d7daeec629c58b..c6e9a14e82ac69966534f9958ca3aa73e8f2727c 100644 (file)
@@ -54,10 +54,10 @@ public:
     assert(Start.isValid() == End.isValid() &&
            "Start and end should either both be valid or both be invalid!");
   }
-  
+
   bool isValid() const { return Start.isValid(); }
 };
-  
+
 } // end namespace llvm
 
 #endif