summaryrefslogtreecommitdiff
path: root/gcc/java/resource.c
diff options
context:
space:
mode:
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-22 15:46:09 +0000
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-22 15:46:09 +0000
commit73f2fb9f9b0f8166d3af601a49452e152a68f6c6 (patch)
tree079e6b175cebb3f77c5cc337cb86c43f7c946aad /gcc/java/resource.c
parent17de3cb1f2b89e9c82ac23def6e14440d1e580a0 (diff)
downloadgcc-73f2fb9f9b0f8166d3af601a49452e152a68f6c6.tar.gz
* resource.c (write_resource_constructor): Guard call to possibly
NULL targetm.asm_out.constructor with targetm.have_ctors_dtors. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81012 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/resource.c')
-rw-r--r--gcc/java/resource.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/java/resource.c b/gcc/java/resource.c
index 5d4b72a13ae..bc2860dfd1f 100644
--- a/gcc/java/resource.c
+++ b/gcc/java/resource.c
@@ -129,6 +129,9 @@ write_resource_constructor (void)
to scan the object file to find its ctor/dtor routine. */
TREE_PUBLIC (init_decl) = ! targetm.have_ctors_dtors;
+ /* Suppress spurious warnings. */
+ TREE_USED (init_decl) = 1;
+
pushlevel (0);
make_decl_rtl (init_decl, NULL);
init_function_start (init_decl);
@@ -156,8 +159,9 @@ write_resource_constructor (void)
flag_inline_functions = saved_flag;
}
current_function_decl = NULL_TREE;
- (* targetm.asm_out.constructor) (XEXP (DECL_RTL (init_decl), 0),
- DEFAULT_INIT_PRIORITY);
+ if (targetm.have_ctors_dtors)
+ targetm.asm_out.constructor (XEXP (DECL_RTL (init_decl), 0),
+ DEFAULT_INIT_PRIORITY);
input_location = saved_loc;
}