aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-08-28 16:28:31 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-08-28 16:28:31 +0000
commitbb011bbcb8b332308a9c8ce0abd83c5957ef9bd9 (patch)
tree5805a00768867ad9b6e03b3aedaf66c340fa0979 /gcc
parent08789087fc452a4857df45553c974fed82e31eb4 (diff)
downloadgcc-bb011bbcb8b332308a9c8ce0abd83c5957ef9bd9.zip
gcc-bb011bbcb8b332308a9c8ce0abd83c5957ef9bd9.tar.gz
gcc-bb011bbcb8b332308a9c8ce0abd83c5957ef9bd9.tar.bz2
tree.h (struct tree_function_decl): Increase size of function_code bitfield.
2007-08-28 Richard Guenther <rguenther@suse.de> * tree.h (struct tree_function_decl): Increase size of function_code bitfield. From-SVN: r127865
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree.h8
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fa17fc0..d9724f8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-28 Richard Guenther <rguenther@suse.de>
+
+ * tree.h (struct tree_function_decl): Increase size of
+ function_code bitfield.
+
2007-08-28 Nathan Sidwell <nathan@codesourcery.com>
Kazu Hirata <kazu@codesourcery.com>
diff --git a/gcc/tree.h b/gcc/tree.h
index b3a5955..4985fa9 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -3312,14 +3312,14 @@ struct tree_function_decl GTY(())
DECL_FUNCTION_CODE. Otherwise unused.
??? The bitfield needs to be able to hold all target function
codes as well. */
- ENUM_BITFIELD(built_in_function) function_code : 10;
+ ENUM_BITFIELD(built_in_function) function_code : 11;
ENUM_BITFIELD(built_in_class) built_in_class : 2;
unsigned static_ctor_flag : 1;
unsigned static_dtor_flag : 1;
unsigned uninlinable : 1;
- unsigned possibly_inlined : 1;
+ unsigned possibly_inlined : 1;
unsigned novops_flag : 1;
unsigned returns_twice_flag : 1;
unsigned malloc_flag : 1;
@@ -3327,12 +3327,12 @@ struct tree_function_decl GTY(())
unsigned declared_inline_flag : 1;
unsigned regdecl_flag : 1;
unsigned inline_flag : 1;
- unsigned no_instrument_function_entry_exit : 1;
+ unsigned no_instrument_function_entry_exit : 1;
unsigned no_limit_stack : 1;
unsigned disregard_inline_limits : 1;
- /* 6 bits left */
+ /* 5 bits left */
};
/* For a TYPE_DECL, holds the "original" type. (TREE_TYPE has the copy.) */