From: Reid Spencer Date: Fri, 12 Jan 2007 03:36:33 +0000 (+0000) Subject: Update for changes in the IR. The ConstantIntegral, ConstantBool, and X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=53bfebc967c0a68023db8fe95f7319f8ab724998;p=oota-llvm.git Update for changes in the IR. The ConstantIntegral, ConstantBool, and ConstantInt classes were merged into just ConstantInt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33107 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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.