[llvm-commits] [llvm] r39822 - /llvm/trunk/docs/LangRef.html

Chris Lattner sabre at nondot.org
Fri Jul 13 13:01:47 PDT 2007


Author: lattner
Date: Fri Jul 13 15:01:46 2007
New Revision: 39822

URL: http://llvm.org/viewvc/llvm-project?rev=39822&view=rev
Log:
fix some bugs in the manual

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=39822&r1=39821&r2=39822&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Fri Jul 13 15:01:46 2007
@@ -667,7 +667,7 @@
 
 <div class="doc_code">
 <pre>
-%G = constant float 1.0, section "foo", align 4
+ at G = constant float 1.0, section "foo", align 4
 </pre>
 </div>
 
@@ -1382,7 +1382,7 @@
   <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>





More information about the llvm-commits mailing list