From 6a2cc2acaf07beaa7366b3a20fc9f027c35f1c83 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sat, 2 Oct 1999 20:13:24 +0000 Subject: [PATCH] graph.h: New file to prototype functions exported by graph.c. * graph.h: New file to prototype functions exported by graph.c. * Makefile.in (graph.o, toplev.o): Depend on graph.h. * graph.c: Include graph.h. * toplev.c: Likewise. Remove redundant prototypes. From-SVN: r29777 --- gcc/ChangeLog | 10 ++++++++++ gcc/Makefile.in | 4 ++-- gcc/graph.c | 1 + gcc/graph.h | 28 ++++++++++++++++++++++++++++ gcc/toplev.c | 4 +--- 5 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 gcc/graph.h diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fdf6437d19f..e9b3d9e9f0d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +Sat Oct 2 16:07:56 1999 Kaveh R. Ghazi + + * graph.h: New file to prototype functions exported by graph.c. + + * Makefile.in (graph.o, toplev.o): Depend on graph.h. + + * graph.c: Include graph.h. + + * toplev.c: Likewise. Remove redundant prototypes. + Sat Oct 2 11:28:33 1999 Krister Walfridsson * invoke.texi: Removed duplicated description for -Q. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5a09bb7b1d6..7ca8f1ab175 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1343,7 +1343,7 @@ c-iterate.o: c-iterate.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \ c-common.h flags.h toplev.h $(EXPR_H) mbchar.o: mbchar.c $(CONFIG_H) system.h mbchar.h graph.o: graph.c $(CONFIG_H) system.h toplev.h flags.h output.h $(RTL_H) \ - function.h hard-reg-set.h $(BASIC_BLOCK_H) + function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h sbitmap.o: sbitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H) COLLECT2_OBJS = collect2.o tlink.o hash.o intl.o underscore.o version.o @@ -1462,7 +1462,7 @@ fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h \ toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) function.h \ flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \ insn-codes.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h dwarfout.h \ - dwarf2out.h sdbout.h dbxout.h $(EXPR_H) $(BASIC_BLOCK_H) \ + dwarf2out.h sdbout.h dbxout.h $(EXPR_H) $(BASIC_BLOCK_H) graph.h \ $(lang_options_files) $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \ -DTARGET_NAME=\"$(target_alias)\" \ diff --git a/gcc/graph.c b/gcc/graph.c index 4f8929d2c63..3c35f37bd2d 100644 --- a/gcc/graph.c +++ b/gcc/graph.c @@ -29,6 +29,7 @@ #include "hard-reg-set.h" #include "basic-block.h" #include "toplev.h" +#include "graph.h" static const char *graph_ext[] = { diff --git a/gcc/graph.h b/gcc/graph.h new file mode 100644 index 00000000000..8ca52ad2a92 --- /dev/null +++ b/gcc/graph.h @@ -0,0 +1,28 @@ +/* Header file for graph routines. + Copyright (C) 1998 Free Software Foundation, Inc. + +This file is part of GNU CC. + +GNU CC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU CC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU CC; see the file COPYING. If not, write to +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ + +#ifndef __GRAPH_H__ +#define __GRAPH_H__ + +extern void print_rtl_graph_with_bb PARAMS ((const char *, const char *, rtx)); +extern void clean_graph_dump_file PARAMS ((const char *, const char *)); +extern void finish_graph_dump_file PARAMS ((const char *, const char *)); + +#endif /* ! __GRAPH_H__ */ diff --git a/gcc/toplev.c b/gcc/toplev.c index 99efdb3db99..662ab4095f4 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -56,6 +56,7 @@ Boston, MA 02111-1307, USA. */ #include "basic-block.h" #include "intl.h" #include "ggc.h" +#include "graph.h" #ifdef DWARF_DEBUGGING_INFO #include "dwarfout.h" @@ -204,9 +205,6 @@ static int print_single_switch PROTO((FILE *, int, int, const char *, static void print_switch_values PROTO((FILE *, int, int, const char *, const char *, const char *)); -void print_rtl_graph_with_bb PROTO ((const char *, const char *, rtx)); -void clean_graph_dump_file PROTO ((const char *, const char *)); -void finish_graph_dump_file PROTO ((const char *, const char *)); /* Length of line when printing switch values. */ #define MAX_LINE 75 -- 2.30.2