diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-10-02 20:13:24 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-10-02 20:13:24 +0000 |
commit | 6a2cc2acaf07beaa7366b3a20fc9f027c35f1c83 (patch) | |
tree | 08e481fa4e0cead1088bbb61abb47402ea630d29 /gcc/graph.h | |
parent | 2a138827f05464678fe15c6e166f0d8afb2a4a78 (diff) | |
download | gcc-6a2cc2acaf07beaa7366b3a20fc9f027c35f1c83.zip gcc-6a2cc2acaf07beaa7366b3a20fc9f027c35f1c83.tar.gz gcc-6a2cc2acaf07beaa7366b3a20fc9f027c35f1c83.tar.bz2 |
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
Diffstat (limited to 'gcc/graph.h')
-rw-r--r-- | gcc/graph.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/graph.h b/gcc/graph.h new file mode 100644 index 0000000..8ca52ad --- /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__ */ |