diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-18 20:53:02 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-18 20:53:02 +0000 |
commit | 28d4c44089cdb3bf95a746d9301052975dcb7a44 (patch) | |
tree | 7ae0a361840bc2824923927c3b59ff16ea8325e2 /gcc/tree-affine.h | |
parent | 36ec4203224ef9bd797f0176cfc209aa872719db (diff) | |
download | gcc-28d4c44089cdb3bf95a746d9301052975dcb7a44.tar.gz |
2007-08-18 Andrew Pinski <pinskia@gmail.com>
* tree-affine.h (print_aff): New prototype.
(debug_aff): Likewise.
* tree-affine.c (print_aff): New function.
(debug_aff): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127615 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-affine.h')
-rw-r--r-- | gcc/tree-affine.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-affine.h b/gcc/tree-affine.h index 5da34bead9a..c7dafab8f4e 100644 --- a/gcc/tree-affine.h +++ b/gcc/tree-affine.h @@ -74,3 +74,7 @@ bool aff_combination_constant_multiple_p (aff_tree *, aff_tree *, double_int *); void tree_to_aff_combination_expand (tree, tree, aff_tree *, struct pointer_map_t **); void free_affine_expand_cache (struct pointer_map_t **); + +/* Debugging functions. */ +void print_aff (FILE *, aff_tree *); +void debug_aff (aff_tree *); |