From 34e2e1797dfe4eee26dd015319e874e8e8041d7c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 12 Jan 2007 03:36:33 +0000 Subject: [PATCH] Update for changes in the IR. The ConstantIntegral, ConstantBool, and ConstantInt classes were merged into just ConstantInt. llvm-svn: 33107 --- docs/ProgrammersManual.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index fae99d6cd71..d98573e253a 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -2365,7 +2365,7 @@ provide a name for it (probably based on the name of the translation unit).

Constant represents a base class for different types of constants. It -is subclassed by ConstantBool, ConstantInt, ConstantArray etc for representing +is subclassed by ConstantInt, ConstantArray, etc. for representing the various types of Constants.

@@ -2381,12 +2381,16 @@ the various types of Constants.

Important Subclasses of Constant
-
  • ConstantBool : This represents a boolean constant.
    • bool getValue() const: Returns the underlying value of this constant.