summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-26 07:08:58 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-26 07:08:58 +0000
commitf098be4f8669a59282136485b8d2602e334a519e (patch)
tree652f4a42c7df6222849295f777b5415a3cc0a582 /include/llvm
parenta81be80b0eabfc8b5e590a10471c66dadf6ded6f (diff)
downloadllvm-f098be4f8669a59282136485b8d2602e334a519e.tar.gz
llvm-f098be4f8669a59282136485b8d2602e334a519e.tar.bz2
llvm-f098be4f8669a59282136485b8d2602e334a519e.tar.xz
Alphabetize the enum list.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166760 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Attributes.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h
index 097ee3c7aa..4921672aab 100644
--- a/include/llvm/Attributes.h
+++ b/include/llvm/Attributes.h
@@ -58,34 +58,34 @@ public:
///< 0 means unaligned different from align 1
AlwaysInline = 3, ///< inline=always
ByVal = 4, ///< Pass structure by value
- InlineHint = 5, ///< Source said inlining was desirable
- InReg = 6, ///< Force argument to be passed in register
- Naked = 7, ///< Naked function
- Nest = 8, ///< Nested function static chain
- NoAlias = 9, ///< Considered to not alias after call
- NoCapture = 10, ///< Function creates no aliases of pointer
- NoImplicitFloat = 11, ///< Disable implicit floating point insts
- NoInline = 12, ///< inline=never
- NonLazyBind = 13, ///< Function is called early and/or
+ ForceSizeOpt = 5, ///< Function must be optimized for size first
+ InlineHint = 6, ///< Source said inlining was desirable
+ InReg = 7, ///< Force argument to be passed in register
+ Naked = 8, ///< Naked function
+ Nest = 9, ///< Nested function static chain
+ NoAlias = 10, ///< Considered to not alias after call
+ NoCapture = 11, ///< Function creates no aliases of pointer
+ NoImplicitFloat = 12, ///< Disable implicit floating point insts
+ NoInline = 13, ///< inline=never
+ NonLazyBind = 14, ///< Function is called early and/or
///< often, so lazy binding isn't worthwhile
- NoRedZone = 14, ///< Disable redzone
- NoReturn = 15, ///< Mark the function as not returning
- NoUnwind = 16, ///< Function doesn't unwind stack
- OptimizeForSize = 17, ///< opt_size
- ReadNone = 18, ///< Function does not access memory
- ReadOnly = 19, ///< Function only reads from memory
- ReturnsTwice = 20, ///< Function can return twice
- SExt = 21, ///< Sign extended before/after call
- StackAlignment = 22, ///< Alignment of stack for function (3 bits)
+ NoRedZone = 15, ///< Disable redzone
+ NoReturn = 16, ///< Mark the function as not returning
+ NoUnwind = 17, ///< Function doesn't unwind stack
+ OptimizeForSize = 18, ///< opt_size
+ ReadNone = 19, ///< Function does not access memory
+ ReadOnly = 20, ///< Function only reads from memory
+ ReturnsTwice = 21, ///< Function can return twice
+ SExt = 22, ///< Sign extended before/after call
+ StackAlignment = 23, ///< Alignment of stack for function (3 bits)
///< stored as log2 of alignment with +1 bias 0
///< means unaligned (different from
///< alignstack={1))
- StackProtect = 23, ///< Stack protection.
- StackProtectReq = 24, ///< Stack protection required.
- StructRet = 25, ///< Hidden pointer to structure to return
- UWTable = 26, ///< Function must be in a unwind table
- ZExt = 27, ///< Zero extended before/after call
- ForceSizeOpt = 28 ///< Function must be optimized for size first
+ StackProtect = 24, ///< Stack protection.
+ StackProtectReq = 25, ///< Stack protection required.
+ StructRet = 26, ///< Hidden pointer to structure to return
+ UWTable = 27, ///< Function must be in a unwind table
+ ZExt = 28 ///< Zero extended before/after call
};
private:
AttributesImpl *Attrs;