aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-25 20:34:52 +0000
committerChris Lattner <sabre@nondot.org>2007-12-25 20:34:52 +0000
commit64910eeec481c90640a374e27011644217ebb130 (patch)
tree55115063e5892a022f2403a99f444479b6200055
parentff26ab227713afdd6f54f1b539df10cbe8f481e5 (diff)
downloadexternal_llvm-64910eeec481c90640a374e27011644217ebb130.zip
external_llvm-64910eeec481c90640a374e27011644217ebb130.tar.gz
external_llvm-64910eeec481c90640a374e27011644217ebb130.tar.bz2
update to llvm 2.0 syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45355 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index bec79f3..c877651 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1418,8 +1418,8 @@ and smaller aggregate constants.</p>
<dd>Structure constants are represented with notation similar to structure
type definitions (a comma separated list of elements, surrounded by braces
- (<tt>{}</tt>)). For example: "<tt>{ i32 4, float 17.0, i32* %G }</tt>",
- where "<tt>%G</tt>" is declared as "<tt>@G = external global i32</tt>". Structure constants
+ (<tt>{}</tt>)). For example: "<tt>{ i32 4, float 17.0, i32* @G }</tt>",
+ where "<tt>@G</tt>" is declared as "<tt>@G = external global i32</tt>". Structure constants
must have <a href="#t_struct">structure type</a>, and the number and
types of elements must match those specified by the type.
</dd>