From: Dan Gohman Date: Sun, 4 Jan 2009 23:49:44 +0000 (+0000) Subject: A few more whitespace tidyments. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=81e21674a6b7328ec6b4ad3841493c2ed23cc35d;p=oota-llvm.git A few more whitespace tidyments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61655 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index f064114f666..cf8c95efb87 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -3187,7 +3187,7 @@ result is null if there is insufficient memory available.

Example:
-  %array  = malloc [4 x i8]                    ; yields {[%4 x i8]*}:array
+  %array  = malloc [4 x i8]                     ; yields {[%4 x i8]*}:array
 
   %size   = add i32 2, 2                        ; yields {i32}:size = i32 4
   %array1 = malloc i8, i32 4                    ; yields {i8*}:array1
@@ -3207,7 +3207,7 @@ result is null if there is insufficient memory available.

Syntax:
-  free <type> <value>                              ; yields {void}
+  free <type> <value>                           ; yields {void}
 
Overview:
@@ -3230,7 +3230,7 @@ is a noop.

Example:
-  %array  = malloc [4 x i8]                    ; yields {[4 x i8]*}:array
+  %array  = malloc [4 x i8]                     ; yields {[4 x i8]*}:array
             free   [4 x i8]* %array
 
@@ -3281,10 +3281,10 @@ is legal, but the result is undefined.

Example:
-  %ptr = alloca i32                              ; yields {i32*}:ptr
-  %ptr = alloca i32, i32 4                       ; yields {i32*}:ptr
-  %ptr = alloca i32, i32 4, align 1024           ; yields {i32*}:ptr
-  %ptr = alloca i32, align 1024                  ; yields {i32*}:ptr
+  %ptr = alloca i32                             ; yields {i32*}:ptr
+  %ptr = alloca i32, i32 4                      ; yields {i32*}:ptr
+  %ptr = alloca i32, i32 4, align 1024          ; yields {i32*}:ptr
+  %ptr = alloca i32, align 1024                 ; yields {i32*}:ptr