diff options
author | Diego Novillo <dnovillo@google.com> | 2011-10-13 14:26:08 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2011-10-13 14:26:08 -0400 |
commit | ce5046bd7184be1aad54e2d8874e136b758c365d (patch) | |
tree | bc473b6f345b0ec3153dbddb0619c36532f08515 | |
parent | 385b73ab1dd53d3815d929792166e07cc37f969f (diff) | |
download | gcc-ce5046bd7184be1aad54e2d8874e136b758c365d.zip gcc-ce5046bd7184be1aad54e2d8874e136b758c365d.tar.gz gcc-ce5046bd7184be1aad54e2d8874e136b758c365d.tar.bz2 |
cp-tree.h (struct language_function): Rename in_function_try_handler to x_in_function_try_handler.
* cp-tree.h (struct language_function): Rename in_function_try_handler
to x_in_function_try_handler.
Rename in_base_initializer to x_in_base_initializer.
Update all users.
From-SVN: r179940
-rw-r--r-- | gcc/cp/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 18c98bb..039b155 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,12 @@ 2011-10-13 Diego Novillo <dnovillo@google.com> + * cp-tree.h (struct language_function): Rename in_function_try_handler + to x_in_function_try_handler. + Rename in_base_initializer to x_in_base_initializer. + Update all users. + +2011-10-13 Diego Novillo <dnovillo@google.com> + * class.c (sorted_fields_type_new): Factor out of ... (finish_struct_1): ... here. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index b53accf..1b896b8 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -1053,8 +1053,8 @@ struct GTY(()) language_function { BOOL_BITFIELD returns_value : 1; BOOL_BITFIELD returns_null : 1; BOOL_BITFIELD returns_abnormally : 1; - BOOL_BITFIELD in_function_try_handler : 1; - BOOL_BITFIELD in_base_initializer : 1; + BOOL_BITFIELD x_in_function_try_handler : 1; + BOOL_BITFIELD x_in_base_initializer : 1; /* True if this function can throw an exception. */ BOOL_BITFIELD can_throw : 1; @@ -1121,9 +1121,9 @@ struct GTY(()) language_function { cp_function_chain->returns_abnormally /* Nonzero if we are processing a base initializer. Zero elsewhere. */ -#define in_base_initializer cp_function_chain->in_base_initializer +#define in_base_initializer cp_function_chain->x_in_base_initializer -#define in_function_try_handler cp_function_chain->in_function_try_handler +#define in_function_try_handler cp_function_chain->x_in_function_try_handler /* Expression always returned from function, or error_mark_node otherwise, for use by the automatic named return value optimization. */ |