diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index df8f4abf470..031c86b9111 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -2621,10 +2621,20 @@ a subclass, which represents the address of a global variable or function.
ConstantInt : This subclass of Constant represents an integer constant of
any width.
- - int64_t getSExtValue() const: Returns the underlying value of
- this constant as a sign extended signed integer value.
- - uint64_t getZExtValue() const: Returns the underlying value
- of this constant as a zero extended unsigned integer value.
+ - const APInt& getValue() const: Returns the underlying
+ value of this constant, an APInt value.
+ - int64_t getSExtValue() const: Converts the underlying APInt
+ value to an int64_t via sign extension. If the value (not the bit width)
+ of the APInt is too large to fit in an int64_t, an assertion will result.
+ For this reason, use of this method is discouraged.
+ - uint64_t getZExtValue() const: Converts the underlying APInt
+ value to a uint64_t via zero extension. IF the value (not the bit width)
+ of the APInt is too large to fit in a uint64_t, an assertion will result.
+ For this reason, use of this method is discourage.
+ - static ConstantInt* get(const APInt& Val): Returns the
+ ConstantInt object that represents the value provided by Val.
+ The type is implied as the IntegerType that corresponds to the bit width
+ of Val.
- static ConstantInt* get(const Type *Ty, uint64_t Val):
Returns the ConstantInt object that represents the value provided by
Val for integer type Ty.