aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-07-13 20:01:46 +0000
committerChris Lattner <sabre@nondot.org>2007-07-13 20:01:46 +0000
commit3e63a9d52ca2052b55c1ac65b048b2051cc2c09b (patch)
treefb63bc5c6836af00c65d0f95c8f2f66fd7e411f7 /docs
parent3e8d0017996aeb08c5190b6b6d83f0a717526ab5 (diff)
downloadexternal_llvm-3e63a9d52ca2052b55c1ac65b048b2051cc2c09b.zip
external_llvm-3e63a9d52ca2052b55c1ac65b048b2051cc2c09b.tar.gz
external_llvm-3e63a9d52ca2052b55c1ac65b048b2051cc2c09b.tar.bz2
fix some bugs in the manual
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39822 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 66dd9ca..a94b6d1 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -667,7 +667,7 @@ a power of 2.</p>
<div class="doc_code">
<pre>
-%G = constant float 1.0, section "foo", align 4
+@G = constant float 1.0, section "foo", align 4
</pre>
</div>
@@ -1382,7 +1382,7 @@ 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
+ 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>