diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-03 03:06:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-03 03:06:52 +0000 |
commit | aff26d112dbba8f414985959bc55e2bbef215c19 (patch) | |
tree | c0727a19207ab023195c3f6c82fd76b2b5c19302 /docs/ProgrammersManual.html | |
parent | 302da1e736ef5723560188c57adcff865f2fa13e (diff) | |
download | external_llvm-aff26d112dbba8f414985959bc55e2bbef215c19.zip external_llvm-aff26d112dbba8f414985959bc55e2bbef215c19.tar.gz external_llvm-aff26d112dbba8f414985959bc55e2bbef215c19.tar.bz2 |
fix validation issues
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r-- | docs/ProgrammersManual.html | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 6c0f87e..2ed64d6 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -1573,7 +1573,7 @@ MyModule->addTypeName("mylist", NewSTy); This code shows the basic approach used to build recursive types: build a non-recursive type using 'opaque', then use type unification to close the cycle. The type unification step is performed by the <tt><a -ref="#refineAbstractTypeTo">refineAbstractTypeTo</a></tt> method, which is +href="#refineAbstractTypeTo">refineAbstractTypeTo</a></tt> method, which is described next. After that, we describe the <a href="#PATypeHolder">PATypeHolder class</a>. </p> @@ -2750,11 +2750,6 @@ the various types of Constants.</p> this constant. </li> </ul> </li> - <ul> - <li><tt>bool getValue() const</tt>: Returns the underlying value of this - constant. </li> - </ul> - </li> <li>ConstantArray : This represents a constant array. <ul> <li><tt>const std::vector<Use> &getValues() const</tt>: Returns |