diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-15 17:37:45 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-15 17:37:45 +0000 |
commit | d7bac116dcc95bd7c840b9d8ac71497350d77def (patch) | |
tree | 8552b516c7ec52543d120f6e056ea9bcc879c8e9 /gcc/tree-ssa-structalias.h | |
parent | ee3e981073525e18e194a8c1cbe08cd763ff70ca (diff) | |
download | gcc-d7bac116dcc95bd7c840b9d8ac71497350d77def.tar.gz |
* tree-ssa-structalias.c (dump_solution_for_var): Reformat
output.
(dump_sa_points_to_info): Make extern.
(debug_sa_points_to_info): New.
* tree-ssa-structalias.h (TREE_SSA_STRUCTALIAS_H): Rename from
TREE_ALIAS_COMMON.
(dump_sa_points_to_info): Declare.
(debug_sa_points_to_info): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100987 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-structalias.h')
-rw-r--r-- | gcc/tree-ssa-structalias.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/tree-ssa-structalias.h b/gcc/tree-ssa-structalias.h index 4725f286e38..89224c6bb0e 100644 --- a/gcc/tree-ssa-structalias.h +++ b/gcc/tree-ssa-structalias.h @@ -19,15 +19,19 @@ along with GCC; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef TREE_ALIAS_COMMON -#define TREE_ALIAS_COMMON +#ifndef TREE_SSA_STRUCTALIAS_H +#define TREE_SSA_STRUCTALIAS_H struct constraint; typedef struct constraint *constraint_t; + extern void dump_constraint (FILE *, constraint_t); extern void dump_constraints (FILE *); extern void debug_constraint (constraint_t); extern void debug_constraints (void); extern void dump_solution_for_var (FILE *, unsigned int); extern void debug_solution_for_var (unsigned int); -#endif /* TREE_ALIAS_COMMON */ +extern void dump_sa_points_to_info (FILE *); +extern void debug_sa_points_to_info (void); + +#endif /* TREE_SSA_STRUCTALIAS_H */ |