diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-28 18:32:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-28 18:32:25 +0000 |
commit | 9706385b9af22325c3aa4281672a1b228abc8840 (patch) | |
tree | b156cfd788b0f79982fa1b6a3c8253a22006ac80 | |
parent | 557bc5dc855e8ed0ed31e9f3db8bc68ae9d55702 (diff) | |
download | external_llvm-9706385b9af22325c3aa4281672a1b228abc8840.zip external_llvm-9706385b9af22325c3aa4281672a1b228abc8840.tar.gz external_llvm-9706385b9af22325c3aa4281672a1b228abc8840.tar.bz2 |
don't use the word 'aggregate' with constants, it is confusing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65702 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index f70b363..5329a01 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -61,7 +61,7 @@ <li><a href="#constants">Constants</a> <ol> <li><a href="#simpleconstants">Simple Constants</a></li> - <li><a href="#aggregateconstants">Aggregate Constants</a></li> + <li><a href="#complexconstants">Complex Constants</a></li> <li><a href="#globalconstants">Global Variable and Function Addresses</a></li> <li><a href="#undefvalues">Undefined Values</a></li> <li><a href="#constantexprs">Constant Expressions</a></li> @@ -1788,12 +1788,14 @@ the long double format on your target. All hexadecimal formats are big-endian </div> <!-- ======================================================================= --> -<div class="doc_subsection"><a name="aggregateconstants">Aggregate Constants</a> +<div class="doc_subsection"> +<a name="aggregateconstants"> <!-- old anchor --> +<a name="complexconstants">Complex Constants</a></a> </div> <div class="doc_text"> -<p>Aggregate constants arise from aggregation of simple constants -and smaller aggregate constants.</p> +<p>Complex constants are a (potentially recursive) combination of simple +constants and smaller complex constants.</p> <dl> <dt><b>Structure constants</b></dt> @@ -2140,7 +2142,7 @@ return value.</p> <pre> ret i32 5 <i>; Return an integer value of 5</i> ret void <i>; Return from a void function</i> - ret { i32, i8 } { i32 4, i8 2 } <i>; Return an aggregate of values 4 and 2</i> + ret { i32, i8 } { i32 4, i8 2 } <i>; Return an struct of values 4 and 2</i> </pre> <p>Note that the code generator does not yet fully support large |