diff options
author | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-05 18:45:40 +0000 |
---|---|---|
committer | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-05 18:45:40 +0000 |
commit | a6caa15fd850657e54b7503695521137c0d55dff (patch) | |
tree | 57d6c25d9e2e26c53247cf44ec59628e7d5a7f44 /gcc/double-int.h | |
parent | 7550e1d169bd31dd06508c252f3962e94b46cb16 (diff) | |
download | ppe42-gcc-a6caa15fd850657e54b7503695521137c0d55dff.tar.gz ppe42-gcc-a6caa15fd850657e54b7503695521137c0d55dff.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161847 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/double-int.h')
-rw-r--r-- | gcc/double-int.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/double-int.h b/gcc/double-int.h index 1fa9d8818a7..00ec4efdad1 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -270,9 +270,6 @@ double_int_equal_p (double_int cst1, double_int cst2) /* Legacy interface with decomposed high/low parts. */ -extern int fit_double_type (unsigned HOST_WIDE_INT, HOST_WIDE_INT, - unsigned HOST_WIDE_INT *, HOST_WIDE_INT *, - const_tree); extern int add_double_with_sign (unsigned HOST_WIDE_INT, HOST_WIDE_INT, unsigned HOST_WIDE_INT, HOST_WIDE_INT, unsigned HOST_WIDE_INT *, HOST_WIDE_INT *, |