Use InstrSlots::NUM rather than pre-dividing by four. Also, mark this const.
[oota-llvm.git] / include / llvm / Value.h
index 26d2d1df4c65f66fd389285596694c3bb6b9143c..6d4d7cc74ac9bea27ed04d14d7e59f6f12fef077 100644 (file)
@@ -226,6 +226,9 @@ public:
   /// casts from the specified value, returning the original uncasted value.
   /// Note that the returned value is guaranteed to have pointer type.
   Value *stripPointerCasts();
+  const Value *stripPointerCasts() const {
+    return const_cast<Value*>(this)->stripPointerCasts();
+  }
 };
 
 inline std::ostream &operator<<(std::ostream &OS, const Value &V) {