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

Dan Gohman gohman at apple.com
Sun Jan 4 15:49:44 PST 2009


Author: djg
Date: Sun Jan  4 17:49:44 2009
New Revision: 61655

URL: http://llvm.org/viewvc/llvm-project?rev=61655&view=rev
Log:
A few more whitespace tidyments.

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=61655&r1=61654&r2=61655&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sun Jan  4 17:49:44 2009
@@ -3187,7 +3187,7 @@
 <h5>Example:</h5>
 
 <pre>
-  %array  = malloc [4 x i8]                    <i>; yields {[%4 x i8]*}:array</i>
+  %array  = malloc [4 x i8]                     <i>; yields {[%4 x i8]*}:array</i>
 
   %size   = <a href="#i_add">add</a> i32 2, 2                        <i>; yields {i32}:size = i32 4</i>
   %array1 = malloc i8, i32 4                    <i>; yields {i8*}:array1</i>
@@ -3207,7 +3207,7 @@
 <h5>Syntax:</h5>
 
 <pre>
-  free <type> <value>                              <i>; yields {void}</i>
+  free <type> <value>                           <i>; yields {void}</i>
 </pre>
 
 <h5>Overview:</h5>
@@ -3230,7 +3230,7 @@
 <h5>Example:</h5>
 
 <pre>
-  %array  = <a href="#i_malloc">malloc</a> [4 x i8]                    <i>; yields {[4 x i8]*}:array</i>
+  %array  = <a href="#i_malloc">malloc</a> [4 x i8]                     <i>; yields {[4 x i8]*}:array</i>
             free   [4 x i8]* %array
 </pre>
 </div>
@@ -3281,10 +3281,10 @@
 <h5>Example:</h5>
 
 <pre>
-  %ptr = alloca i32                              <i>; yields {i32*}:ptr</i>
-  %ptr = alloca i32, i32 4                       <i>; yields {i32*}:ptr</i>
-  %ptr = alloca i32, i32 4, align 1024           <i>; yields {i32*}:ptr</i>
-  %ptr = alloca i32, align 1024                  <i>; yields {i32*}:ptr</i>
+  %ptr = alloca i32                             <i>; yields {i32*}:ptr</i>
+  %ptr = alloca i32, i32 4                      <i>; yields {i32*}:ptr</i>
+  %ptr = alloca i32, i32 4, align 1024          <i>; yields {i32*}:ptr</i>
+  %ptr = alloca i32, align 1024                 <i>; yields {i32*}:ptr</i>
 </pre>
 </div>
 





More information about the llvm-commits mailing list