summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-09-07 10:26:33 +0000
committerBill Wendling <isanbard@gmail.com>2008-09-07 10:26:33 +0000
commite36dccc9b53f7410c08e68d34333ff43a25d2a3f (patch)
tree022912c6910812b8c5564243ad91a97ec90b563f /docs
parent4cddaf77c4f2482e7d3e7cc1c80895523dcfb68e (diff)
downloadllvm-e36dccc9b53f7410c08e68d34333ff43a25d2a3f.tar.gz
llvm-e36dccc9b53f7410c08e68d34333ff43a25d2a3f.tar.bz2
llvm-e36dccc9b53f7410c08e68d34333ff43a25d2a3f.tar.xz
Formatting changes. to make the information cleaner.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55884 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html47
1 files changed, 24 insertions, 23 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index e92fa5bc86..63bcbf684c 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -922,30 +922,30 @@ the named garbage collection algorithm.</p>
various passes.</p>
<div class="doc_code">
-<pre>define void @f() notes(inline=Always) { ... }</pre>
-<pre>define void @f() notes(inline=Always,opt-size) { ... }</pre>
-<pre>define void @f() notes(inline=Never,opt-size) { ... }</pre>
-<pre>define void @f() notes(opt-size) { ... }</pre>
+<pre>
+define void @f() notes(inline=Always) { ... }
+define void @f() notes(inline=Always,opt-size) { ... }
+define void @f() notes(inline=Never,opt-size) { ... }
+define void @f() notes(opt-size) { ... }
+</pre>
</div>
-<p>
-<li>inline=Always
-<p>
-This note requests inliner to inline this function irrespective of
-inlining size threshold for this function.
-</p></li>
-<li>inline=Never
-<p>
-This note requests inliner to never inline this function in any situation.
-This note may not be used together with inline=Always note.
-</p></li>
-<li>opt-size
-<p>
-This note suggests optimization passes and code generator passes to make
-choices that help reduce code size.
-</p></li>
-<p>
-The notes that are not documented here are considered invalid notes.
+<dl>
+<dt><tt>inline=Always</tt></dt>
+<dd>This note requests inliner to inline this function irrespective of inlining
+size threshold for this function.</dd>
+
+<dt><tt>inline=Never</tt></dt>
+<dd>This note requests inliner to never inline this function in any situation.
+This note may not be used together with <tt>inline=Always</tt> note.</dd>
+
+<dt><tt>opt-size</tt></dt>
+<dd>This note suggests optimization passes and code generator passes to make
+choices that help reduce code size.</dd>
+
+</dl>
+
+<p>Any notes that are not documented here are considered invalid notes.</p>
</div>
<!-- ======================================================================= -->
@@ -1395,7 +1395,8 @@ instruction.</p>
<td class="left"><tt>&lt; { i32, i32, i32 } &gt;</tt></td>
<td class="left">A triple of three <tt>i32</tt> values</td>
</tr><tr class="layout">
- <td class="left"><tt>&lt; { float, i32 (i32)* } &gt;</tt></td>
+ <td class="left">
+<tt>&lt;&nbsp;{&nbsp;float,&nbsp;i32&nbsp;(i32)*&nbsp;}&nbsp;&gt;</tt></td>
<td class="left">A pair, where the first element is a <tt>float</tt> and the
second element is a <a href="#t_pointer">pointer</a> to a
<a href="#t_function">function</a> that takes an <tt>i32</tt>, returning