summaryrefslogtreecommitdiff
path: root/gcc/java/jcf-depend.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@gcc.gnu.org>2007-01-09 19:58:05 +0000
committerTom Tromey <tromey@gcc.gnu.org>2007-01-09 19:58:05 +0000
commit97b8365cafc3a344a22d3980b8ed885f5c6d8357 (patch)
tree996a5f57d4a68c53473382e45cb22f574cb3e4db /gcc/java/jcf-depend.c
parentc648dedbde727ca3f883bb5fd773aa4af70d3369 (diff)
downloadgcc-97b8365cafc3a344a22d3980b8ed885f5c6d8357.tar.gz
Merged gcj-eclipse branch to trunk.
From-SVN: r120621
Diffstat (limited to 'gcc/java/jcf-depend.c')
-rw-r--r--gcc/java/jcf-depend.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/gcc/java/jcf-depend.c b/gcc/java/jcf-depend.c
index 1134d36546d..63c7d235c50 100644
--- a/gcc/java/jcf-depend.c
+++ b/gcc/java/jcf-depend.c
@@ -1,6 +1,6 @@
/* Functions for handling dependency tracking when reading .class files.
- Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2003, 2006 Free Software Foundation, Inc.
This file is part of GCC.
@@ -100,7 +100,7 @@ jcf_dependency_set_dep_file (const char *name)
}
void
-jcf_dependency_add_file (const char *filename, int system_p)
+jcf_dependency_add_file (const char *filename ATTRIBUTE_UNUSED, int system_p)
{
if (! dependencies)
return;
@@ -109,7 +109,10 @@ jcf_dependency_add_file (const char *filename, int system_p)
if (system_p && ! system_files)
return;
- deps_add_dep (dependencies, filename);
+
+ /* FIXME: Don't emit any dependencies. In many cases we'll just see
+ temporary files emitted by ecj... */
+ /* deps_add_dep (dependencies, filename); */
}
void