diff options
author | Anatoly Sokolov <aesok@post.ru> | 2010-07-05 22:45:40 +0400 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2010-07-05 22:45:40 +0400 |
commit | 88e06841144bd5612bc3411a657094c2fb39575f (patch) | |
tree | 57d6c25d9e2e26c53247cf44ec59628e7d5a7f44 /gcc/ChangeLog | |
parent | 92eb4438684a217e0f6968d0ab996424c7af055f (diff) | |
download | gcc-88e06841144bd5612bc3411a657094c2fb39575f.zip gcc-88e06841144bd5612bc3411a657094c2fb39575f.tar.gz gcc-88e06841144bd5612bc3411a657094c2fb39575f.tar.bz2 |
double-int.h (fit_double_type): Remove declaration.
* double-int.h (fit_double_type): Remove declaration.
* double-int.c (fit_double_type): Remove function.
* tree.h (int_fits_type_p): Adjust prototype.
* tree.c (int_fits_type_p): Return bool. Use double_int_fits_to_tree_p
instead of fit_double_type.
(build_int_cst_type): Use double_int_to_tree and shwi_to_double_int
instead of fit_double_type and build_int_cst_wide.
* builtins.c (): Use double_int_fits_to_tree_p and double_int_to_tree
instead of fit_double_type and build_int_cst_wide.
(fold_builtin_object_size): Use double_int_fits_to_tree_p instead
of fit_double_type.
From-SVN: r161847
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 75b5645..8cf4196 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,17 @@ +2010-07-05 Anatoly Sokolov <aesok@post.ru> + + * double-int.h (fit_double_type): Remove declaration. + * double-int.c (fit_double_type): Remove function. + * tree.h (int_fits_type_p): Adjust prototype. + * tree.c (int_fits_type_p): Return bool. Use double_int_fits_to_tree_p + instead of fit_double_type. + (build_int_cst_type): Use double_int_to_tree and shwi_to_double_int + instead of fit_double_type and build_int_cst_wide. + * builtins.c (): Use double_int_fits_to_tree_p and double_int_to_tree + instead of fit_double_type and build_int_cst_wide. + (fold_builtin_object_size): Use double_int_fits_to_tree_p instead + of fit_double_type. + 2010-07-05 Jan Hubicka <jh@suse.cz> * cgraph.h (cgraph_node, cgraph_varpool_node): Update docmentation of |