summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-04 23:49:44 +0000
committerDan Gohman <gohman@apple.com>2009-01-04 23:49:44 +0000
commit81e21674a6b7328ec6b4ad3841493c2ed23cc35d (patch)
treefb8256ac3649b6a4301e7b6fc2ee2a316895a90e /docs
parent2a08c532385775acafba11bc990ce76a609e3118 (diff)
downloadllvm-81e21674a6b7328ec6b4ad3841493c2ed23cc35d.tar.gz
llvm-81e21674a6b7328ec6b4ad3841493c2ed23cc35d.tar.bz2
llvm-81e21674a6b7328ec6b4ad3841493c2ed23cc35d.tar.xz
A few more whitespace tidyments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61655 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index f064114f66..cf8c95efb8 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3187,7 +3187,7 @@ result is null if there is insufficient memory available.</p>
<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 @@ result is null if there is insufficient memory available.</p>
<h5>Syntax:</h5>
<pre>
- free &lt;type&gt; &lt;value&gt; <i>; yields {void}</i>
+ free &lt;type&gt; &lt;value&gt; <i>; yields {void}</i>
</pre>
<h5>Overview:</h5>
@@ -3230,7 +3230,7 @@ is a noop.</p>
<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 @@ is legal, but the result is undefined.</p>
<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>