graph.h: New file to prototype functions exported by graph.c.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 2 Oct 1999 20:13:24 +0000 (20:13 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 2 Oct 1999 20:13:24 +0000 (20:13 +0000)
* 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
gcc/Makefile.in
gcc/graph.c
gcc/graph.h [new file with mode: 0644]
gcc/toplev.c

index fdf6437d19fa689a0c6ae2c2fda1b1e3e4285afe..e9b3d9e9f0d66b4fe95d245ed05cb047d54c28bb 100644 (file)
@@ -1,3 +1,13 @@
+Sat Oct  2 16:07:56 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * 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 <cato@df.lth.se>
 
        * invoke.texi: Removed duplicated description for -Q.
index 5a09bb7b1d61019d9fa594b0810e93783e524e14..7ca8f1ab17504d50a84adf473db5912c63fa4f20 100644 (file)
@@ -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)\" \
index 4f8929d2c6374c5a80ae7fdd16e36ec0a425e6c7..3c35f37bd2df1684bcecf17b007031a522de4cda 100644 (file)
@@ -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 (file)
index 0000000..8ca52ad
--- /dev/null
@@ -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__ */
index 99efdb3db99a69442eb517b7234ab4d9984254d7..662ab4095f4d48aae982e6500a3d64f254c1d9a8 100644 (file)
@@ -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