diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-10 23:48:03 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-10 23:48:03 +0000 |
commit | 7bdb32b97ef4687f7cbaad717130a78aa2a86a2b (patch) | |
tree | a7172a6e33e902401e82daf343d887ad9029d032 /gcc/sdbout.c | |
parent | 3d2cfac61b57d399e5d452b5e7911c8b55c42088 (diff) | |
download | gcc-7bdb32b97ef4687f7cbaad717130a78aa2a86a2b.zip gcc-7bdb32b97ef4687f7cbaad717130a78aa2a86a2b.tar.gz gcc-7bdb32b97ef4687f7cbaad717130a78aa2a86a2b.tar.bz2 |
Makefile.in (optabs.o): Depend on real.h
* Makefile.in (optabs.o): Depend on real.h
(resource.o): Depend on insn-attr.h
* builtins.c (result_vector): Wrap prototype in macro conditions
governing definition and use.
* c-common.c: Include tm_p.h.
* c-lex.c: Likewise.
* elfos.h: Constify a char*.
* final.c (align_fuzz): Wrap prototype in macro HAVE_ATTR_length.
(get_attr_length, shorten_branches, profile_after_prologue): Mark
parameter with ATTRIBUTE_UNUSED.
* fold-const.c (exact_real_inverse): Wrap variable `i' in
CHECK_FLOAT_VALUE.
* haifa-sched.c (schedule_insns): Mark parameter with
ATTRIBUTE_UNUSED.
* optabs.c: Include real.h.
* real.h (ereal_atof): Add prototype arguments.
* resource.c: Include insn-attr.h.
* sdbout.c (sdbout_queue_anonymous_type,
sdbout_dequeue_anonymous_types): Wrap in macro
SDB_ALLOW_FORWARD_REFERENCES.
(sdbout_init, sdbout_start_new_source_file): Mark parameter with
ATTRIBUTE_UNUSED.
* stmt.c (expand_return): Wrap variable `op0' in macro HAVE_return.
* stupid.c: Include tm_p.h.
* tree.c (real_value_from_int_cst): Mark parameter with
ATTRIBUTE_UNUSED.
cp:
* lex.c: Include tm_p.h.
ch:
* lex.c: Include tm_p.h.
From-SVN: r31308
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 02a35c2..ea33e8d 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -111,8 +111,10 @@ static void sdbout_record_type_name PROTO((tree)); static int plain_type_1 PROTO((tree, int)); static void sdbout_block PROTO((tree)); static void sdbout_syms PROTO((tree)); +#ifdef SDB_ALLOW_FORWARD_REFERENCES static void sdbout_queue_anonymous_type PROTO((tree)); static void sdbout_dequeue_anonymous_types PROTO((void)); +#endif static void sdbout_type PROTO((tree)); static void sdbout_field_types PROTO((tree)); static void sdbout_one_type PROTO((tree)); @@ -337,7 +339,7 @@ static struct sdb_file *current_file; void sdbout_init (asm_file, input_file_name, syms) FILE *asm_file ATTRIBUTE_UNUSED; - char *input_file_name; + char *input_file_name ATTRIBUTE_UNUSED; tree syms ATTRIBUTE_UNUSED; { #ifdef MIPS_DEBUGGING_INFO @@ -1650,7 +1652,7 @@ sdbout_label (insn) void sdbout_start_new_source_file (filename) - char *filename; + char *filename ATTRIBUTE_UNUSED; { #ifdef MIPS_DEBUGGING_INFO struct sdb_file *n = (struct sdb_file *) xmalloc (sizeof *n); |