diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-28 16:21:52 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-28 16:21:52 +0000 |
commit | ff9ddbc50d2773d25300aa8a2a5ba56d9c1a8060 (patch) | |
tree | 596ff35fb23d527258a66b88de0cd538a21c783c /gcc/java/builtins.c | |
parent | f018d957a72d418d69c6d2d8bc80c9415666a9f6 (diff) | |
download | gcc-ff9ddbc50d2773d25300aa8a2a5ba56d9c1a8060.tar.gz |
* jvspec.c (lang_specific_driver): Remove unused
saw_verbose_flag variable.
* jcf-dump.c (main): Remove unused general_purpose_bits
variable.
* builtins.c (initialize_builtins): Remove unused float_ftype_float
variable.
* expr.c (java_stack_pop): Remove unused val variable.
(build_jni_stub): Remove unused res_type variable.
* verify-impl.c (check_field_constant): Remove unused len variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154727 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r-- | gcc/java/builtins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c index 6e4815beeab..099b9e00cd8 100644 --- a/gcc/java/builtins.c +++ b/gcc/java/builtins.c @@ -484,7 +484,7 @@ void initialize_builtins (void) { tree double_ftype_double, double_ftype_double_double; - tree float_ftype_float, float_ftype_float_float; + tree float_ftype_float_float; tree boolean_ftype_boolean_boolean; tree t; int i; @@ -501,7 +501,6 @@ initialize_builtins (void) void_list_node = end_params_node; t = tree_cons (NULL_TREE, float_type_node, end_params_node); - float_ftype_float = build_function_type (float_type_node, t); t = tree_cons (NULL_TREE, float_type_node, t); float_ftype_float_float = build_function_type (float_type_node, t); |