summaryrefslogtreecommitdiff
path: root/gcc/java/jcf-parse.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-03-20 22:57:20 +0000
committerTom Tromey <tromey@gcc.gnu.org>2001-03-20 22:57:20 +0000
commitddd705d182e7ec6e1d5f39a9abb8c572eba5d0bf (patch)
treeb0c1b5ade749a16f9326a59d689e8861b841ad2f /gcc/java/jcf-parse.c
parentde83bf663ea2096bb8232ee85b9f07e15e50c98b (diff)
downloadgcc-ddd705d182e7ec6e1d5f39a9abb8c572eba5d0bf.tar.gz
* jcf-parse.c (read_class): Initialize `class'.
From-SVN: r40678
Diffstat (limited to 'gcc/java/jcf-parse.c')
-rw-r--r--gcc/java/jcf-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c
index d47d0761452..0b3a4b553b9 100644
--- a/gcc/java/jcf-parse.c
+++ b/gcc/java/jcf-parse.c
@@ -549,7 +549,7 @@ read_class (name)
tree name;
{
JCF this_jcf, *jcf;
- tree icv, class;
+ tree icv, class = NULL_TREE;
tree save_current_class = current_class;
const char *save_input_filename = input_filename;
JCF *save_current_jcf = current_jcf;