diff options
author | Diego Novillo <dnovillo@redhat.com> | 2005-06-15 17:37:45 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2005-06-15 13:37:45 -0400 |
commit | 63a4ef6f54f5eb2392f5cf8e65814369308a4ead (patch) | |
tree | 8552b516c7ec52543d120f6e056ea9bcc879c8e9 /gcc/tree-ssa-structalias.h | |
parent | e1f4adc93b6f663f481c1dc5a1ba7e6fb31c8af4 (diff) | |
download | gcc-63a4ef6f54f5eb2392f5cf8e65814369308a4ead.zip gcc-63a4ef6f54f5eb2392f5cf8e65814369308a4ead.tar.gz gcc-63a4ef6f54f5eb2392f5cf8e65814369308a4ead.tar.bz2 |
tree-ssa-structalias.c (dump_solution_for_var): Reformat output.
* 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.
From-SVN: r100987
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 4725f28..89224c6 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 */ |