Begin collecting some of the statistics for block placement discussed on
[oota-llvm.git] / include / llvm / Constants.h
index e168979beaa14469e77f33ef3c284ce8168fb1b0..6545a3fedb9220b8c709ac4facbac885e870bedc 100644 (file)
@@ -203,7 +203,7 @@ public:
   /// value.
   /// @returns true iff this constant is greater or equal to the given number.
   /// @brief Determine if the value is greater or equal to the given number.
-  bool uge(uint64_t Num) {
+  bool uge(uint64_t Num) const {
     return Val.getActiveBits() > 64 || Val.getZExtValue() >= Num;
   }