[llvm] r187811 - [LangRef] Alphabetize function attribute listing.
Sean Silva
silvas at purdue.edu
Tue Aug 6 12:34:37 PDT 2013
Author: silvas
Date: Tue Aug 6 14:34:37 2013
New Revision: 187811
URL: http://llvm.org/viewvc/llvm-project?rev=187811&view=rev
Log:
[LangRef] Alphabetize function attribute listing.
No content change.
Patch by Andrea Di Biagio!
Modified:
llvm/trunk/docs/LangRef.rst
Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=187811&r1=187810&r2=187811&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Tue Aug 6 14:34:37 2013
@@ -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.
More information about the llvm-commits
mailing list