aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/verify-impl.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2009-11-28 17:21:52 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2009-11-28 17:21:52 +0100
commitc750c208706d56fb9b3b8e2badf44ec4b7f37058 (patch)
tree596ff35fb23d527258a66b88de0cd538a21c783c /gcc/java/verify-impl.c
parent0f900dfafa90a1114d3768f3fe5fe4d07f250a9a (diff)
downloadgcc-c750c208706d56fb9b3b8e2badf44ec4b7f37058.zip
gcc-c750c208706d56fb9b3b8e2badf44ec4b7f37058.tar.gz
gcc-c750c208706d56fb9b3b8e2badf44ec4b7f37058.tar.bz2
jvspec.c (lang_specific_driver): Remove unused saw_verbose_flag variable.
* 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. From-SVN: r154727
Diffstat (limited to 'gcc/java/verify-impl.c')
-rw-r--r--gcc/java/verify-impl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/java/verify-impl.c b/gcc/java/verify-impl.c
index 759ee42..1286121 100644
--- a/gcc/java/verify-impl.c
+++ b/gcc/java/verify-impl.c
@@ -2035,7 +2035,6 @@ check_field_constant (int index, type *class_type, bool putfield)
{
vfy_string name, field_type;
const char *typec;
- int len;
type t;
type ct = handle_field_or_method (index,
@@ -2044,7 +2043,6 @@ check_field_constant (int index, type *class_type, bool putfield)
if (class_type)
*class_type = ct;
typec = vfy_string_bytes (field_type);
- len = vfy_string_length (field_type);
if (typec[0] == '[' || typec[0] == 'L')
init_type_from_string (&t, field_type);
else