diff options
author | Richard Guenther <rguenther@suse.de> | 2011-07-06 10:03:05 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2011-07-06 10:03:05 +0000 |
commit | 1a07229414e590ca4fe245fc3e05550b58df5ff5 (patch) | |
tree | 1dffb70df948ffa400f99b16abdc37060a8e1d92 /gcc/java | |
parent | e6a64b21cb136a8b4e65f5d14cc9206e8baba54f (diff) | |
download | gcc-1a07229414e590ca4fe245fc3e05550b58df5ff5.zip gcc-1a07229414e590ca4fe245fc3e05550b58df5ff5.tar.gz gcc-1a07229414e590ca4fe245fc3e05550b58df5ff5.tar.bz2 |
tree.c (build_common_tree_nodes_2): Merge with build_common_tree_nodes.
2011-07-06 Richard Guenther <rguenther@suse.de>
* tree.c (build_common_tree_nodes_2): Merge with
build_common_tree_nodes.
* tree.h (build_common_tree_nodes): Adjust prototype.
(build_common_tree_nodes_2): Remove.
* doc/tm.texi.in (lang_hooks.builtin_function): Adjust.
* doc/tm.texi (lang_hooks.builtin_function): Regenerate.
c-family/
* c-common.c (c_common_nodes_and_builtins):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
fortran/
* f95-lang.c (gfc_init_decl_processing):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
go/
* go-lang.c (go_langhook_init):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
java/
* decl.c (java_init_decl_processing):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
lto/
* lto-lang.c (lto_init):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
ada/
* gcc-interface/misc.c (gnat_init):
Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
Re-initialize boolean_false_node.
From-SVN: r175906
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/java/decl.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 98dd104..b3e3ec6 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2011-07-06 Richard Guenther <rguenther@suse.de> + + * decl.c (java_init_decl_processing): + Merge calls to build_common_tree_nodes and build_common_tree_nodes_2. + 2011-06-21 Andrew MacLeod <amacleod@redhat.com> * builtins.c: Add sync_ or SYNC__ to builtin names. diff --git a/gcc/java/decl.c b/gcc/java/decl.c index e4a3db2..179a2c3 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -567,10 +567,7 @@ java_init_decl_processing (void) global_binding_level = current_binding_level; /* Build common tree nodes, Java has an unsigned char. */ - build_common_tree_nodes (false); - - /* Build the rest of the common tree nodes. */ - build_common_tree_nodes_2 (0); + build_common_tree_nodes (false, false); /* ??? Now we continue and override some of the built types again with Java specific types. As the above generated types are |