summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-08-06 19:34:37 +0000
committerSean Silva <silvas@purdue.edu>2013-08-06 19:34:37 +0000
commite6b1079cd8bdef4e494101aa07d14df342cf4bbe (patch)
tree1c0db20a433853a37eabdc88fe21d5de7e0d3d91 /docs
parent7198ee6f62d5726eb9f5c36238cd1866fb35d943 (diff)
downloadllvm-e6b1079cd8bdef4e494101aa07d14df342cf4bbe.tar.gz
llvm-e6b1079cd8bdef4e494101aa07d14df342cf4bbe.tar.bz2
llvm-e6b1079cd8bdef4e494101aa07d14df342cf4bbe.tar.xz
[LangRef] Alphabetize function attribute listing.
No content change. Patch by Andrea Di Biagio! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/LangRef.rst b/docs/LangRef.rst
index dc96d8f5a8..b69e2a35d1 100644
--- a/docs/LangRef.rst
+++ b/docs/LangRef.rst
@@ -828,10 +828,6 @@ example:
computing edge weights, basic blocks post-dominated by a cold
function call are also considered to be cold; and, thus, given low
weight.
-``nonlazybind``
- This attribute suppresses lazy symbol binding for the function. This
- may make calls to the function faster, at the cost of extra program
- startup time if the function is not called during program startup.
``inlinehint``
This attribute indicates that the source code contained a hint that
inlining this function is desirable (such as the "inline" keyword in
@@ -863,6 +859,10 @@ example:
This attribute indicates that the inliner should never inline this
function in any situation. This attribute may not be used together
with the ``alwaysinline`` attribute.
+``nonlazybind``
+ This attribute suppresses lazy symbol binding for the function. This
+ may make calls to the function faster, at the cost of extra program
+ startup time if the function is not called during program startup.
``noredzone``
This attribute indicates that the code generator should not use a
red zone, even if the target-specific ABI normally permits it.