From: Bill Wendling
Date: Sun, 7 Sep 2008 10:26:33 +0000 (+0000)
Subject: Formatting changes. to make the information cleaner.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e36dccc9b53f7410c08e68d34333ff43a25d2a3f;p=oota-llvm.git
Formatting changes. to make the information cleaner.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55884 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index e92fa5bc866..63bcbf684c1 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -922,30 +922,30 @@ the named garbage collection algorithm.
various passes.
-
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) { ... }
+
+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) { ... }
+
-
-
inline=Always
-
-This note requests inliner to inline this function irrespective of
-inlining size threshold for this function.
-
-inline=Never
-
-This note requests inliner to never inline this function in any situation.
-This note may not be used together with inline=Always note.
-
-opt-size
-
-This note suggests optimization passes and code generator passes to make
-choices that help reduce code size.
-
-
-The notes that are not documented here are considered invalid notes.
+
+- inline=Always
+- This note requests inliner to inline this function irrespective of inlining
+size threshold for this function.
+
+- inline=Never
+- This note requests inliner to never inline this function in any situation.
+This note may not be used together with inline=Always note.
+
+- opt-size
+- This note suggests optimization passes and code generator passes to make
+choices that help reduce code size.
+
+
+
+Any notes that are not documented here are considered invalid notes.
@@ -1395,7 +1395,8 @@ instruction.
< { i32, i32, i32 } > |
A triple of three i32 values |
- < { float, i32 (i32)* } > |
+
+< { float, i32 (i32)* } > |
A pair, where the first element is a float and the
second element is a pointer to a
function that takes an i32, returning
|