From 529cb5fcd107b9d611b07900c9ef8008a7d1e824 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Tue, 6 Jul 2010 18:24:09 +0000 Subject: [PATCH] Alphabetize the list of function parameters. llvm-svn: 107680 --- docs/LangRef.html | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index f8a2643803c..b1af5b33731 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1147,15 +1147,21 @@ define void @f() optsize { ... } this function is desirable (such as the "inline" keyword in C/C++). It is just a hint; it imposes no requirements on the inliner. +
naked
+
This attribute disables prologue / epilogue emission for the function. + This can have very system-specific consequences.
+ +
noimplicitfloat
+
This attributes disables implicit floating point instructions.
+
noinline
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.
-
optsize
-
This attribute suggests that optimization passes and code generator passes - make choices that keep the code size of this function low, and otherwise - do optimizations specifically to reduce code size.
+
noredzone
+
This attribute indicates that the code generator should not use a red + zone, even if the target-specific ABI normally permits it.
noreturn
This function attribute indicates that the function never returns @@ -1167,6 +1173,11 @@ define void @f() optsize { ... } unwind or exceptional control flow. If the function does unwind, its runtime behavior is undefined.
+
optsize
+
This attribute suggests that optimization passes and code generator passes + make choices that keep the code size of this function low, and otherwise + do optimizations specifically to reduce code size.
+
readnone
This attribute indicates that the function computes its result (or decides to unwind an exception) based strictly on its arguments, without @@ -1209,17 +1220,6 @@ define void @f() optsize { ... } function that doesn't have an sspreq attribute or which has an ssp attribute, then the resulting function will have an sspreq attribute.
- -
noredzone
-
This attribute indicates that the code generator should not use a red - zone, even if the target-specific ABI normally permits it.
- -
noimplicitfloat
-
This attributes disables implicit floating point instructions.
- -
naked
-
This attribute disables prologue / epilogue emission for the function. - This can have very system-specific consequences.