aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/class.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2005-12-02 17:04:41 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2005-12-02 17:04:41 +0000
commit1c00c223e908bcbc8808f077fcb9b719b0d002af (patch)
tree5810285eb036f44ca8a7bb28e421589ad146c775 /gcc/java/class.c
parentd17791d66d9c108ccea13d7121419a3863762248 (diff)
downloadgcc-1c00c223e908bcbc8808f077fcb9b719b0d002af.zip
gcc-1c00c223e908bcbc8808f077fcb9b719b0d002af.tar.gz
gcc-1c00c223e908bcbc8808f077fcb9b719b0d002af.tar.bz2
java-gimplify.c (java_gimplify_labeled_block_expr): Use buildN instead of build.
2005-12-02 Richard Guenther <rguenther@suse.de> * java-gimplify.c (java_gimplify_labeled_block_expr): Use buildN instead of build. * class.c (finish_class): Likewise. * expr.c (java_create_object): Likewise. From-SVN: r107904
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r--gcc/java/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c
index eb9ea71..6f724f4 100644
--- a/gcc/java/class.c
+++ b/gcc/java/class.c
@@ -1917,7 +1917,7 @@ finish_class (void)
tree verify_method = TYPE_VERIFY_METHOD (output_class);
DECL_SAVED_TREE (verify_method)
= add_stmt_to_compound (DECL_SAVED_TREE (verify_method), void_type_node,
- build (RETURN_EXPR, void_type_node, NULL));
+ build1 (RETURN_EXPR, void_type_node, NULL));
java_genericize (verify_method);
cgraph_finalize_function (verify_method, false);
TYPE_ASSERTIONS (current_class) = NULL;