diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-02 20:13:24 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-02 20:13:24 +0000 |
commit | e5bd13650548f863d8a7a996ac679e209b64f205 (patch) | |
tree | 08e481fa4e0cead1088bbb61abb47402ea630d29 /gcc/graph.h | |
parent | 4d84eafdb31558a5d28c152293a440fe69c42981 (diff) | |
download | gcc-e5bd13650548f863d8a7a996ac679e209b64f205.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29777 138bc75d-0d04-0410-961f-82ee72b054a4
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 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__ */ |