1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

fix some bugs in the manual

llvm-svn: 39822
This commit is contained in:
Chris Lattner 2007-07-13 20:01:46 +00:00
parent 275a5ef481
commit e19d21fc74

View File

@ -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>