diff options
author | Richard Guenther <rguenther@suse.de> | 2012-03-30 08:52:32 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-03-30 08:52:32 +0000 |
commit | aeb83f098d6740d61580014ab78d33abba1168fa (patch) | |
tree | 365ac257e1633f429586b1006dd08eb0fb6d08f6 /gcc/tree-affine.c | |
parent | b9268e550b893f065a23e73e76d911cea5480df9 (diff) | |
download | gcc-aeb83f098d6740d61580014ab78d33abba1168fa.zip gcc-aeb83f098d6740d61580014ab78d33abba1168fa.tar.gz gcc-aeb83f098d6740d61580014ab78d33abba1168fa.tar.bz2 |
tree-affine.h (print_aff): Remove.
2012-03-30 Richard Guenther <rguenther@suse.de>
* tree-affine.h (print_aff): Remove.
* tree-affine.c (print_aff): Make static.
* tree-data-ref.h (access_matrix_get_index_for_parameter): Remove.
(get_references_in_stmt): Likewise.
(print_direction_vector): Likewise.
(print_dir_vectors): Likewise.
(print_dist_vectors): Likewise.
(dump_subscript): Likewise.
(dump_ddrs): Likewise.
(dump_dist_dir_vectors): Likewise.
(dump_data_references): Likewise.
(dump_data_dependence_relation): Likewise.
(dump_data_dependence_direction): Likewise.
(dump_rdg_vertex): Likewise.
(dump_rdg_component): Likewise.
(debug_ddrs): Declare.
(struct data_ref_loc_d): Move ...
* tree-data-ref.c (struct data_ref_loc_d): ... here.
(get_references_in_stmt): Make static.
(dump_data_references): Likewise.
(dump_subscript): Likewise.
(print_direction_vector): Likewise.
(print_dir_vectors): Likewise.
(print_dist_vectors): Likewise.
(dump_data_dependence_relation): Likewise.
(dump_dist_dir_vectors): Likewise.
(dump_ddrs): Likewise.
(dump_rdg_vertex): Likewise.
(dump_rdg_component): Likewise.
(debug_ddrs): New function.
(access_matrix_get_index_for_parameter): Remove.
From-SVN: r185994
Diffstat (limited to 'gcc/tree-affine.c')
-rw-r--r-- | gcc/tree-affine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-affine.c b/gcc/tree-affine.c index 69cce2e..7bb1645 100644 --- a/gcc/tree-affine.c +++ b/gcc/tree-affine.c @@ -812,7 +812,7 @@ aff_combination_constant_multiple_p (aff_tree *val, aff_tree *div, /* Prints the affine VAL to the FILE. */ -void +static void print_aff (FILE *file, aff_tree *val) { unsigned i; |