diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-14 13:44:11 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-14 13:44:11 +0000 |
commit | f9a50f5729ffa2ecd972a8f64ba205486e1c7a09 (patch) | |
tree | aeb2b02f82b5fb61f83f6de55a92a5cd53d09b08 /gcc/java/xref.c | |
parent | 70e41471d717181d6fb13ead6b003096499d2951 (diff) | |
download | gcc-f9a50f5729ffa2ecd972a8f64ba205486e1c7a09.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26935 138bc75d-0d04-0410-961f-82ee72b054a4
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 0e269bf6b66..8835e8dfcac 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 |