diff options
author | Sean Silva <silvas@purdue.edu> | 2013-08-06 19:34:37 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-08-06 19:34:37 +0000 |
commit | 1cbbcf1c9395381313420a1668e700092b7c9261 (patch) | |
tree | 8ccadf66aa292b41976fc87392e06061dc555cd0 /llvm | |
parent | cf387c6afb986915755a8bd26ac501cc6610b9e6 (diff) | |
download | bcm5719-llvm-1cbbcf1c9395381313420a1668e700092b7c9261.tar.gz bcm5719-llvm-1cbbcf1c9395381313420a1668e700092b7c9261.zip |
[LangRef] Alphabetize function attribute listing.
No content change.
Patch by Andrea Di Biagio!
llvm-svn: 187811
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index dc96d8f5a80..b69e2a35d19 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/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. |