diff options
author | Josh Triplett <josh@freedesktop.org> | 2007-05-22 18:32:19 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2007-05-22 18:32:19 -0700 |
commit | 4fc68394cd3950f90aee216af19abf62057ff7b1 (patch) | |
tree | 3421a98329da95b4b45ce1c285ae7c0f535f3163 /ident-list.h | |
parent | Move the ident for defined() into the preprocessor section. (diff) | |
download | sparse-4fc68394cd3950f90aee216af19abf62057ff7b1.tar.gz sparse-4fc68394cd3950f90aee216af19abf62057ff7b1.tar.bz2 sparse-4fc68394cd3950f90aee216af19abf62057ff7b1.zip |
Reorganize attribute list for readability.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'ident-list.h')
-rw-r--r-- | ident-list.h | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/ident-list.h b/ident-list.h index 6340f28..7f09c99 100644 --- a/ident-list.h +++ b/ident-list.h @@ -21,54 +21,55 @@ IDENT_RESERVED(goto); IDENT(struct); IDENT(union); IDENT(enum); -IDENT(__attribute__); -IDENT(__attribute); -IDENT(volatile); -IDENT(__volatile__); -IDENT(__volatile); +IDENT(__attribute); IDENT(__attribute__); +IDENT(volatile); IDENT(__volatile); IDENT(__volatile__); /* Extended gcc identifiers */ -IDENT(asm); -IDENT(alignof); -IDENT_RESERVED(__asm__); -IDENT_RESERVED(__asm); -IDENT_RESERVED(__alignof); -IDENT_RESERVED(__alignof__); +IDENT(asm); IDENT_RESERVED(__asm); IDENT_RESERVED(__asm__); +IDENT(alignof); IDENT_RESERVED(__alignof); IDENT_RESERVED(__alignof__); IDENT_RESERVED(__sizeof_ptr__); IDENT_RESERVED(__builtin_types_compatible_p); /* Attribute names */ IDENT(packed); IDENT(__packed__); -IDENT(aligned); IDENT(__aligned__); IDENT(nocast); -IDENT(noderef); IDENT(safe); IDENT(force); -IDENT(address_space); IDENT(context); IDENT(mode); -IDENT(__mode__); IDENT(__QI__); IDENT(QI); -IDENT(__HI__); IDENT(HI); IDENT(__SI__); -IDENT(SI); IDENT(__DI__); IDENT(DI); -IDENT(__word__); IDENT(word); IDENT(format); -IDENT(__format__); IDENT(section); IDENT(__section__); -IDENT(unused); IDENT(__unused__); IDENT(const); +IDENT(aligned); IDENT(__aligned__); +IDENT(nocast); +IDENT(noderef); +IDENT(safe); +IDENT(force); +IDENT(address_space); +IDENT(context); +IDENT(mode); IDENT(__mode__); +IDENT(QI); IDENT(__QI__); +IDENT(HI); IDENT(__HI__); +IDENT(SI); IDENT(__SI__); +IDENT(DI); IDENT(__DI__); +IDENT(word); IDENT(__word__); +IDENT(format); IDENT(__format__); +IDENT(section); IDENT(__section__); +IDENT(unused); IDENT(__unused__); +IDENT(const); IDENT(__const); IDENT(__const__); IDENT(__used__); -IDENT(warn_unused_result); +IDENT(warn_unused_result); IDENT(__warn_unused_result__); IDENT(noinline); -IDENT(deprecated); -IDENT(__const); IDENT(__const__); IDENT(noreturn); -IDENT(__noreturn__); IDENT(regparm); IDENT(__regparm__); +IDENT(deprecated); IDENT(__deprecated__); +IDENT(noreturn); IDENT(__noreturn__); +IDENT(regparm); IDENT(__regparm__); IDENT(weak); IDENT(__weak__); -IDENT(__no_instrument_function__); IDENT(no_instrument_function); -IDENT(__sentinel__); IDENT(sentinel); -IDENT(alias); IDENT(__alias__); IDENT(pure); IDENT(always_inline); -IDENT(syscall_linkage); IDENT(visibility); IDENT(__visibility__); +IDENT(no_instrument_function); IDENT(__no_instrument_function__); +IDENT(sentinel); IDENT(__sentinel__); +IDENT(alias); IDENT(__alias__); +IDENT(pure); IDENT(__pure__); +IDENT(always_inline); +IDENT(syscall_linkage); +IDENT(visibility); IDENT(__visibility__); IDENT(bitwise); IDENT(__bitwise__); IDENT(model); IDENT(__model__); IDENT(__format_arg__); IDENT(nothrow); IDENT(__nothrow); IDENT(__nothrow__); IDENT(__transparent_union__); -IDENT(__pure__); IDENT(__malloc__); IDENT(nonnull); IDENT(__nonnull); IDENT(__nonnull__); -IDENT(__deprecated__); -IDENT(__warn_unused_result__); IDENT(constructor); IDENT(__constructor__); IDENT(destructor); IDENT(__destructor__); IDENT(cdecl); IDENT(__cdecl__); |