diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 1999-05-14 13:44:11 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 1999-05-14 06:44:11 -0700 |
commit | af8b342afe49fbdca4673f95cda3fca92891e054 (patch) | |
tree | aeb2b02f82b5fb61f83f6de55a92a5cd53d09b08 /gcc/java/xref.c | |
parent | 62dab29cd24953c065bc717e013d2926f9e56901 (diff) | |
download | gcc-af8b342afe49fbdca4673f95cda3fca92891e054.zip gcc-af8b342afe49fbdca4673f95cda3fca92891e054.tar.gz gcc-af8b342afe49fbdca4673f95cda3fca92891e054.tar.bz2 |
[multiple changes]
Fri May 14 12:31:08 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* xref.c (xref_set_current_fp): New function, defined.
* xref.h (xref_set_current_fp): New function, prototyped.
Fri May 14 11:57:54 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* check-init.c (check_init): Take into account that
LABELED_BLOCK_STMT can be empty.
From-SVN: r26935
Diffstat (limited to 'gcc/java/xref.c')
-rw-r--r-- | gcc/java/xref.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/java/xref.c b/gcc/java/xref.c index 0e269bf..8835e8d 100644 --- a/gcc/java/xref.c +++ b/gcc/java/xref.c @@ -66,6 +66,13 @@ xref_get_data (flag) return xref_table [flag-1].data; } +void +xref_set_current_fp (fp) + FILE *fp; +{ + xref_table [flag_emit_xref-1].fp = fp; +} + /* Branch to the right xref "back-end". */ void |