]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cp-tree.h (struct language_function): Rename in_function_try_handler to x_in_function...
authorDiego Novillo <dnovillo@google.com>
Thu, 13 Oct 2011 18:26:08 +0000 (14:26 -0400)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Thu, 13 Oct 2011 18:26:08 +0000 (14:26 -0400)
* 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

gcc/cp/ChangeLog
gcc/cp/cp-tree.h

index 18c98bb3f3539cec1f6db32ea925b3fa24f6eb7b..039b155810f2262b3dc40f9fd733f65d9d1330f3 100644 (file)
@@ -1,3 +1,10 @@
+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 ...
index b53accfed65483247376cdb94ed4c5b569a20938..1b896b819870e7c771c1058feadc8d49c29fcafd 100644 (file)
@@ -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.  */